|
Home >> FAQs/Tutorials >> PHP Script Tutorials and Tips >> Index
PHP Tutorials - Updating Existing Rows
By: FYICenter.com
(Continued from previous topic...)
How To Update Existing Rows in a Table?
Updating existing rows in a table requires to run the UPDATE statement with a WHERE clause to identify the row.
The following sample script updates one row with two new values:
<?php
include "mysql_connection.php";
$sql = "UPDATE fyi_links SET notes='Nice site.', counts=8"
. " WHERE id = 102";
if (mysql_query($sql, $con)) {
print(mysql_affected_rows() . " rows updated.\n");
} else {
print("SQL statement failed.\n");
}
mysql_close($con);
?>
If you run this script, you will get something like this:
1 rows updated.
(Continued on next topic...)
- How To Install MySQL Server?
- How To Use MySQL Command Line Interface?
- What Do You Need to Connect PHP to MySQL?
- How To Connect to MySQL from a PHP Script?
- How To Create a Database?
- How To Select an Exiting Database?
- How To Run a SQL Statement?
- How To Create a Table?
- How To Get the Number of Rows Selected or Affected by a SQL Statement?
- How To Insert Data into a Table?
- How To Insert Rows Based on SELECT Statements?
- What Is a Result Set Object?
- How To Query Tables and Loop through the Returning Rows?
- How To Update Existing Rows in a Table?
- How To Delete Existing Rows in a Table?
- How To Quote Text Values in SQL Statements?
- How To Quote Date and Time Values in SQL Statements?
- How To Perform Key Word Search in Tables?
- How To Query Multiple Tables Jointly?
- How To Set the ID Column as Auto-Incremented?
- How To Get the Last ID Assigned by MySQL?
|