vote up 0 vote down star

For example, I know I can make a new row and enter values into all fields doing this:

mysql_query('INSERT INTO table_name VALUES ( "id77" ,"some value" )');

Assuming the name of the first field ("id77") is "myID" and the name of the second field ("some value") is "foo"...

How can I use PHP find the row with myID = id77 and change the "foo" value to "bar"?

flag

2 Answers

vote up 1 vote down check
mysql_query("UPDATE table_name SET foo = 'bar' WHERE myID = 77");

I assume that you are using an integer (77) for your IDs instead of a string value ("id77").

link|flag
vote up 6 vote down

UPDATE ... WHERE.

You should read some books on MySQL first.

link|flag
Yes, that worked, thanks for the answer. :) Eventually, I will read the book; however, I do not have time to do that this morning. – ed.talmadge Oct 30 at 13:24
;) You are welcome. If you have no books, MySQL online documentation is also ok. – FractalizeR Oct 31 at 19:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.