8,966 Posted Topics
Re: You need to join both tables in the where. | |
Re: Have you tried this code with something much simpler? This snippet is mentioned on SO, the drawbacks have to do with some unicode characters apparently. | |
Re: Line 38 needs to point to the WSDL, which is usually an URL ending with `?wsdl` | |
Re: Since there are so many scripts out there to help you, try to make a list first of the things you absolutely require. Another item is the flow. Do you want just client-side validation, or do you want to use AJAX (in some way), so you can reuse some of … | |
Re: Are you sure that your database allows to insert multiple records at once? You are using Access? From what I've found that syntax is for single records only. | |
Re: See [iCODE]split()[/iCODE]. Next time please start a new thread. | |
Re: You'll need to change your collation to something that is case sensitive. Case insensitive is usually default. | |
Re: Show what you have so far, and we will help you by pointing you in the right direction. | |
Re: Apart from what diafol pointed out: the code you use for updating only shows a `mysql_query` using an `$id`. Are you sure you are connected to the database correctly, and that you've set `$id` to a correct value? | |
![]() | ![]() |
Re: [Here](https://en.wikipedia.org/wiki/Comparison_of_Internet_forum_software_(PHP)) is a small list. | |
Re: Are you looking for a tool? For a tool I'd use Navicat (paid), but there's also Toad and Heidi, or you could just dump the tables and import them again using the mysql command line tools. | |
Re: You can use [strptime](http://php.net/manual/en/function.strptime.php) if your locale is set correctly. | |
Re: If you want to search the database, and not just the 10 showing results, you will have to do a server call, do the search there, and return the new results. | |
Re: Your syntax appears correct, are you sure utf8 is installed? | |
Re: Are you still mainly referring to Oracle? If so, please post your next questions in that forum, or state it clearly in your question. Can you please explain why you are using a 'varchar' column for a date (instead of 'date')? | |
| |
Re: http://www.sitepoint.com/understanding-sql-joins-mysql-database/ | |
Re: > and then put $row into the first query: $row = implode(',', $row); | |
Re: > Can i see your 2 threads? Not hard to find, since you know for what and whom to look and when. | |
Re: This question was answered in this forum not too long ago, but that used a database. | |
Re: No, it's not normal. But cPanel has a snag. Perhaps you added the user/pass combination, but forgot to check the box "protect this folder". | |
Re: > google translation is no more in use It is, but it is a paid service. | |
Re: Are you sure `$dbname` contains the right database name? | |
Re: http://www.kevinmusselman.com/2009/11/round-robin-algorithm/ | |
Re: Very unlikely. Do you have a clue as to why he would request that? | |
Re: See: !string.IsNullOrEmpty(Request.Form("...")) | |
Re: Can you specify your question? What is it you want to achieve? | |
Re: > My point is to use something that help me to figure out the wrong in the code I write and help me to correct it as possible In this case I recommend using a decent IDE, instead of a text editor. An IDE will provide better debugging, code insight … | |
Re: Not really. More (old stuff) [here](http://www.daniweb.com/community-center/geeks-lounge/threads/194321/daniwebs-irc-channel). | |
Re: http://www.daniweb.com/software-development/vbnet/threads/381858/keyboard-hook | |
Re: http://www.daniweb.com/web-development/databases/ms-sql/threads/70383/how-to-delete-duplicate-record-in-a-table-by-using-sql-query | |
Re: Update stu_info set id='0904009', name='mr. x', dept='CSE' where id='0904199' and name='mr. y' and dept='CSE'; | |
Re: Try debugging your script with the IE developer tools. Then you should be able to see where it fails. | |
Re: 1. Yes. 2. You can write the filename and a timestamp to a textfile. Have a cron job running once a day to check the file, and delete any that expired. | |
Re: The name [appreciator](http://www.daniweb.com/members/1018870/appreciator) appears to be in use by you. | |
Re: > is there any program that Simulate like im working on database and make query to practice ?? http://sqlfiddle.com/ | |
Re: Although he did not post the important parts of the class, what I think is happening is that the table name is set in the derived class, yet the query is executed in the base class. What should be done is instead of reintroducing the variable, the parent's variable should … | |
Re: > The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. Do as it says, contact the author. | |
Re: This [code snippet](http://www.daniweb.com/web-development/php/code/434480/using-phpmysqli-with-error-checking) shows basic MySQLi usage. I like this one: http://www.packtpub.com/cms-design-using-php-and-jquery/book | |
Re: You can download the source and see for yourself. | |
Re: I am not sure, but if your plan was to use `db_constractor()` as the class constructor, then rename the function to `__construct()` (in both classes). The function `db_constractor()` is never called, so you do not have a database connection causing your query to fail. | |
Re: > You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-25,25' at line 1 The `-25,25` points to a `LIMIT`. The offset cannot be negative, it has to be zero or greater. It appears … | |
|
The End.