8,966 Posted Topics

Member Avatar for xXghostXx
Member Avatar for AleMonteiro

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.

Member Avatar for AleMonteiro
0
2K
Member Avatar for subrata_ushasi
Member Avatar for pritaeas
0
337
Member Avatar for Rizi004
Member Avatar for ello

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 …

Member Avatar for veedeoo
0
2K
Member Avatar for mail.sujitkulkarni

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.

Member Avatar for mail.sujitkulkarni
0
3K
Member Avatar for janzaldo
Member Avatar for mihai_daniel
0
1K
Member Avatar for hwoarang69

You'll need to change your collation to something that is case sensitive. Case insensitive is usually default.

Member Avatar for hwoarang69
0
117
Member Avatar for sandjuks112

Show what you have so far, and we will help you by pointing you in the right direction.

Member Avatar for sandjuks112
-1
134
Member Avatar for janna1122

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?

Member Avatar for pritaeas
0
241
Member Avatar for diafol
Member Avatar for anandschiru

[Here](https://en.wikipedia.org/wiki/Comparison_of_Internet_forum_software_(PHP)) is a small list.

Member Avatar for pzuurveen
0
141
Member Avatar for dharmendra1986

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.

Member Avatar for pritaeas
0
138
Member Avatar for giovannitao

You can use [strptime](http://php.net/manual/en/function.strptime.php) if your locale is set correctly.

Member Avatar for pritaeas
0
329
Member Avatar for boom14

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.

Member Avatar for pritaeas
0
34
Member Avatar for divyakrishnan
Member Avatar for pritaeas
0
263
Member Avatar for xXghostXx

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')?

Member Avatar for pritaeas
0
208
Member Avatar for xXghostXx
Member Avatar for xXghostXx
0
210
Member Avatar for <M/>
Member Avatar for xXghostXx
Member Avatar for xXghostXx
0
113
Member Avatar for tchitchu
Member Avatar for pritaeas
0
184
Member Avatar for <M/>

> Can i see your 2 threads? Not hard to find, since you know for what and whom to look and when.

Member Avatar for pritaeas
0
66
Member Avatar for <M/>
Member Avatar for pritaeas
0
136
Member Avatar for Fireprufe15
Member Avatar for Suzie999

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".

Member Avatar for Suzie999
0
220
Member Avatar for kamilacbe
Member Avatar for kamilacbe
0
185
Member Avatar for vinodpaul
Member Avatar for Sivapatham
Member Avatar for tibormarias
Member Avatar for bvrameshbabu
Member Avatar for bsewell
Member Avatar for amras123
Member Avatar for pritaeas
0
50
Member Avatar for MGadAllah

> 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 …

Member Avatar for MGadAllah
0
289
Member Avatar for John A

Not really. More (old stuff) [here](http://www.daniweb.com/community-center/geeks-lounge/threads/194321/daniwebs-irc-channel).

Member Avatar for Mike Askew
0
194
Member Avatar for timon.bijl
Member Avatar for pritaeas
0
113
Member Avatar for solomon_13000

http://www.daniweb.com/web-development/databases/ms-sql/threads/70383/how-to-delete-duplicate-record-in-a-table-by-using-sql-query

Member Avatar for buddylee17
0
157
Member Avatar for ratanji
Member Avatar for shihab2555

Update stu_info set id='0904009', name='mr. x', dept='CSE' where id='0904199' and name='mr. y' and dept='CSE';

Member Avatar for shihab2555
0
135
Member Avatar for caige

Try debugging your script with the IE developer tools. Then you should be able to see where it fails.

Member Avatar for caige
0
268
Member Avatar for angelali2013

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.

Member Avatar for angelali2013
0
543
Member Avatar for moshe.lubianiker

The name [appreciator](http://www.daniweb.com/members/1018870/appreciator) appears to be in use by you.

Member Avatar for pritaeas
0
122
Member Avatar for xXghostXx

> is there any program that Simulate like im working on database and make query to practice ?? http://sqlfiddle.com/

Member Avatar for xXghostXx
0
205
Member Avatar for jamojo

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 …

Member Avatar for jamojo
0
194
Member Avatar for davy_yg

> 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.

Member Avatar for pritaeas
0
304
Member Avatar for davy_yg
Member Avatar for jackbauer24-2

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

Member Avatar for jackbauer24-2
0
261
Member Avatar for bvrameshbabu
Member Avatar for thumati

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.

Member Avatar for tiggsy
0
273
Member Avatar for sinZ

> 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 …

Member Avatar for pritaeas
0
211
Member Avatar for hwoarang69

The End.