How to UPDATE data in a MySQL database of WordPress

A guide on how to use Prepared Statements in PHP to update data in the MySQL database of WordPress safely and effectively.

In this article, you'll learn how to connect to the MySQL database of WordPress and use PHP with Prepared Statements to execute an UPDATE statement, allowing you to update records in the data table.

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

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

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

// UPDATE statement with Prepared Statement
$update_query = "UPDATE wp_users SET user_email = ?, display_name = ? WHERE ID = ?";
$stmt = $conn->prepare($update_query);

// Parameters to bind
$new_email = "[email protected]";
$new_display_name = "New Display Name";
$user_id = 1;

// Bind parameters to Prepared Statement
$stmt->bind_param("ssi", $new_email, $new_display_name, $user_id);

// Execute the UPDATE statement
if ($stmt->execute()) {
    echo "Update successful!";
} else {
    echo "Error: " . $stmt->error;
}

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

Detailed explanation:

  1. <?php: Opens the PHP tag.
  2. // Connect to the MySQL database: Comment line.
  3. ...: Declares variables to connect to the database, such as servername, username, password, and dbname.
  4. $conn = new mysqli(...): Creates a connection to the database using MySQLi.
  5. if ($conn->connect_error) {...}: Checks if the connection was successful.
  6. $update_query = "UPDATE wp_users SET user_email = ?, display_name = ? WHERE ID = ?": Defines the UPDATE statement with parameters.
  7. $stmt = $conn->prepare($update_query): Prepares the SQL statement for execution.
  8. bind_param("ssi", ...): Binds parameters to the Prepared Statement with data type format.
  9. if ($stmt->execute()) {...}: Executes the UPDATE statement and checks if it was successful.
  10. echo "Update successful!";: Displays a success message.
  11. stmt->close() and conn->close(): Closes the Prepared Statement and the connection to the database.

System Requirements:

  • PHP 7.x or higher
  • MySQL

How to install the libraries needed to run the PHP code above:

No additional libraries need to be installed if you are using a server that supports PHP and MySQL.

Tips:

  • Make sure your MySQL server is running before attempting to connect.
  • Double-check your connection details like servername, username, password, and dbname to avoid connection errors.
  • Use Prepared Statements to protect against SQL injection attacks.


Related

How to SELECT data from a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to query data from a MySQL database safely and effectively.
Guide to creating a multiple image upload form in WordPress

A detailed guide on how to create a multiple image upload form in WordPress using a plugin or custom code, allowing users to upload multiple images to your website easily.
How to DELETE data from a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to delete data from a MySQL database safely and effectively.
Guide to Implement Apple OAuth Login in WordPress

A detailed guide on how to integrate Apple OAuth login into your WordPress site, including plugin installation and Apple OAuth service configuration.
JSON Web Token (JWT) Authentication in WordPress

A comprehensive guide on integrating JSON Web Token (JWT) authentication into WordPress. Learn how to secure WordPress REST API and use JWT to manage user login sessions.
Step-by-step guide to creating Facebook OAuth login functionality in WordPress

A detailed guide on how to integrate Facebook OAuth login functionality in WordPress, covering steps from creating a Facebook Developer app to configuring a supporting plugin in WordPress.
How to INSERT data into a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to safely and effectively insert data into a MySQL database.
Detailed guide on how to add Google OAuth login functionality in Wordpress

This article provides a detailed guide on how to integrate Google OAuth login functionality into Wordpress, allowing users to log in to your website using their Google accounts conveniently and securely.
A Comprehensive Guide to Creating a WordPress Plugin

This article provides a step-by-step guide on how to create a WordPress plugin, including the basic structure, coding, and installing the plugin. You will learn how to extend the functionality of your WordPress site through plugin development.
How to send Authentication Header Token when POSTing data to API from WordPress

A guide on how to send data to an API from WordPress using the POST method and pass an Authentication Header Token for security. This article provides detailed instructions on how to configure and send an HTTP request.

main.add_cart_success