PHP MySQL Update
The UPDATE statement is used to modify data in a table
The MySQL UPDATE Statement
In this chapter we will show you how to change data in a table.
In PHP this is done the same way as a table or database is created. The MySQL syntax is sent to the server with the mysql_query() function.
Updating Data In a Database
Earlier in the tutorial we created a table named "Person", with three columns. We will use the same table in this example.
FirstName
LastName
Age
Peter
Griffin
35
Glenn
Quagmire
33
MySQL Syntax
UPDATE...