Update data in MySQL using PHP

A guide on how to update data in MySQL using PHP. This code uses the UPDATE SQL statement to change information in a MySQL database efficiently.

<?php
// Connect to MySQL
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "database_name";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// SQL query to update data
$sql = "UPDATE table_name SET column_name='new_value' WHERE id=1";

// Execute the query
if ($conn->query($sql) === TRUE) {
    echo "Record updated successfully";
} else {
    echo "Error updating record: " . $conn->error;
}

// Close connection
$conn->close();
?>

Detailed explanation:

  1. Connecting to MySQL:

    • We use the mysqli object to connect to the MySQL database, supplying server, username, password, and database name.
  2. UPDATE SQL statement:

    • The SQL query UPDATE table_name SET column_name='new_value' WHERE id=1 updates the value in the column_name column for the row with id=1.
  3. Executing and checking the query:

    • We use $conn->query($sql) to execute the query. If successful, it prints "Record updated successfully", otherwise, it outputs the error.
  4. Closing the connection:

    • After completing the operation, we use $conn->close() to close the connection to MySQL.

PHP Version:

This script is compatible with PHP versions 5.6 and above. It fully supports the functions for interacting with MySQL via the mysqli class.



Related

Example of Strategy Pattern in PHP

A guide on the Strategy Pattern in PHP with a concrete example, explaining how to implement and use this design pattern in object-oriented programming.
Add watermark to image using PHP

A guide on how to add a watermark to an image using PHP with the GD library. This PHP script allows adding text or image watermark on top of the original image.
Difference between `split()` and `explode()` functions for String manipulation in PHP

This article explains the difference between `split()` and `explode()` functions in PHP, both used to split strings but with different approaches and use cases.
Guide to uploading multiple images in PHP

A detailed guide on how to upload multiple images at once in PHP, including file handling, format checks, and storage on the server.
How to send JSON POST request with PHP

A guide on how to use PHP to send a POST request with JSON data using cURL. The article includes a runnable PHP example along with detailed explanations.
Get the last character of a string in PHP

Guide on how to use PHP to get the last character of a string. This PHP code helps in easily retrieving the final character of a text string in string manipulation operations.
How to convert a Markdown string to HTML using PHP

A guide on how to convert a Markdown string to HTML in PHP using the `Parsedown` library, enabling you to display Markdown content effectively on your website.
How to Automatically Generate a Table of Contents for Articles Using PHP

This article guides you on how to automatically create a table of contents for your articles using PHP, utilizing the `DOMDocument` class to parse HTML and build a structured table of contents with headers.
How to check for a substring in a string in PHP

A guide on how to use the `strpos` function in PHP to check if a substring exists within a larger string. This is a simple and efficient way to handle string operations in PHP.
How to retrieve Data from MySQL Database Using PHP

Learn how to retrieve data from a MySQL database using PHP. Includes detailed code and explanation on how to connect to and query a MySQL database.

main.add_cart_success