The UPDATE statement is used to modify data in a database table.
The following example creates and populates an Items table using the following SQL commands:
<html><body>
<?php
$username = "your_id";
$database = "your_db";
$password = "your-pw";
$host = "undcemmysql.mysql.database.azure.com";
// Initializing MySQLi
$conn = mysqli_init( );
// Creating an SSL connection
mysqli_ssl_set( $conn, NULL, NULL, "DigiCertGlobalRootCA.crt.pem", NULL, NULL );
// Opening a new connection to the MySQL server
mysqli_real_connect( $conn, $host, $username, $password, $database, 3306 );
// Connect to the database.
if ( $conn->connect_errno )
die( 'Failed to connect to MySQL: ' . $conn->connect_error );
$action = Drop table Create table Select all Insert ( name = "" ) Update ( SET name = "" WHERE ID = "")