8,966 Posted Topics
Re: Closed duplicate. Continue [here](http://www.daniweb.com/internet-marketing/social-media-and-communities/threads/472074/how-can-i-increase-my-web-page-rank-) | |
Re: Why not move all files you need to keep and try a (m)delete * Or perhaps `DELE "'AND SELECT * FROM 'users''"` may work, depending on the FTP server. | |
Re: Try: "/\[ol\](.*?)\[\/ol\]/s", // s is for "dot matches line breaks" | |
Re: You can use `mysqldump` to export everything to an sql script file. On the other server you can use `mysql` to import it again. Both are command line tools. Note that users are never exported, you will have to recreate these manually. | |
Re: If I understand you correctly, you just need to update line 27 above, so it includes your three new variables. | |
| |
Re: http://www.daniweb.com/web-development/php/code/435142/using-phppdo-with-error-checking See lines 72-84. You cannot use `foreach` on what `query()` returns. | |
Re: You'll have to ask a specific question, preferably with an example of your code. | |
Re: Try: #gambar { float: left } You should be using a `class` instead of an `id` if you want to apply it to multiple divs. | |
Re: You'll need two queries, but you can execute them in a transaction. That way if one fails to delete, the other isn't deleted either. With MySQLi you can use [multi_query](http://www.php.net/manual/en/mysqli.multi-query.php). | |
Re: Windows Azure provides multiple instances of a Windows Server (in the cloud) and will automatically start a new instance, if one fails. Better depends on your requirements. | |
Re: > Index was outside the bounds of the array pa = sdr.GetString(8); // for Password column Are you sure the index is 8? It starts counting at 0. | |
Re: > why 2nd worked exactly like i wanted Because there you select just two fields, in the first you select an entire record. | |
Re: What exactly do you want to do? A WSDL file is basically XML. | |
Re: You can add: CASE WHEN INtime IS NULL AND TimeOut IS NULL THEN 'Absent' WHEN INtime IS NOT NULL AND TimeOut IS NOT NULL THEN 'Present' ELSE 'Unknown' END AS IsAbsent | |
Re: Line 9 is javascript, you can't use PHP there. You should: alert(id); | |
Re: Keys is a reserved word, so you need to surround it with backticks. | |
Re: http://www.magentocommerce.com/magento-connect/create_your_extension/ | |
Re: Although you are correct in theory, apparently something else happens too, although I'm unsure what. Can you confirm which HTTP status is returned after `die()`? Is it still `200 OK`? | |
Re: Am not sure where I saw this, but on one site I saw the header height smaller when scrolling down (smaller font). Kinda liked the idea. I'll see if I can find it. | |
Re: An SQL dump of your table structures with some data would be more useful than images. | |
Re: `INSERT` queries. If you can be a little more specific about what exactly you're looking for, I can give a more specific answer. | |
Re: Something like [this](http://www.daniweb.com/web-development/php/code/425686/create-a-table-x-columns-wide)? | |
![]() | Re: Interesting. Do you have this with PDO too? A shame I can't test this here. Have to wait till I get home. Do you get an error, or just no output? ![]() |
Re: The dot is concatenating strings. Another way to write this is: $add_tel_sql = "INSERT INTO telephone (master_id, date_added, date_modified, tel_number, type) VALUES ('$master_id', now(), now(), '$safe_tel_number', '{$_POST['tel_type']}')"; | |
Re: Apparently you cannot set that property. I suggest you remove it and see what happens. | |
Re: What's your question? | |
Re: > please help What exactly do you need help with? What do you have so far? | |
Re: > And am wondering if oit is that simple..? It should be, but it's been a while since I've used SOAPServer with PHP. > Dont I need to create a WSDL file for this to work? A WSDL is needed when you want to publicly expose your API. Since you … | |
Re: Do: mysql_query($query) or die(mysql_error()); and find out why. ![]() | |
Re: > Great, there are no replies still and I receive your comment not to bump my posts...So dear deceptikon, would you please tell me if there are no replies (like the previous 4 posts of WPF from me), what exactly I should be doing instead of asking help from someone … | |
Re: If `Model` is the class, and `model` is the instance, use `model` instead. | |
Re: > thought that by leaving them the way we store them in our own back-end Your back-end implementation shouldn't be exposed. Let app developers make up their own mind. I always prefer strong names. If I want to generalize, it's up to me. ![]() | |
Re: Output the contents of `sqledit` and paste it here. It will be helpful if you post your table structure too. | |
Re: Closed. Please DO NOT repost identical questions. Continued here: http://www.daniweb.com/web-development/jsp/threads/471657/the-error-line-was-classnotfoundexceptioncom.mysql.jdbc.driver-in-jsp | |
Re: http://www.php.net/manual/en/ref.calendar.php Perhaps one of the `JDxxx` functions can help you. | |
Re: Check out this [article](http://www.hookedonlinq.com/CallingStoredProcedureUsingOptionalParameter.ashx). Your issue sounds similar. | |
Re: http://php.net/manual/en/datetime.createfromformat.php | |
Re: Check your PHP.INI to see if the SQL Server extension is enabled. | |
Re: > There is an option of cluster server, but company cannot afford licensing cost. How do these costs weigh against the licensing costs of a SQL Server? | |
Re: That's a lot of code. What exactly are you trying to achieve? What isn't working? | |
Re: What is the charset for your HTML? Are you using UTF-8? | |
Re: Can you give an example of what you are trying to achieve? | |
Re: [Here](http://www.daniweb.com/web-development/php/code/435142/using-phppdo-with-error-checking)'s a code snippet showing you how to check for errors. Perhaps you need to explicitly specify the type if you are inserting into a blob. | |
Re: Isn't there anything about this in the MySQL manual? |
The End.