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.

In this article, you will learn how to use WordPress to insert data into a table in the MySQL database using Prepared Statements, which helps protect your data from SQL injection attacks.

global $wpdb;

// INSERT statement with Prepared Statement
$insert_query = $wpdb->prepare(
    "INSERT INTO wp_students (name, age) VALUES (%s, %d)",
    'John Doe', 25
);

// Execute the INSERT statement
$result = $wpdb->query($insert_query);

// Check the result
if ($result) {
    echo "Data has been inserted successfully.";
} else {
    echo "An error occurred while inserting data.";
}

Detailed explanation:

  1. global $wpdb;: Uses the global $wpdb variable to access the WordPress database connection object.
  2. $insert_query = $wpdb->prepare(...): Defines the INSERT statement with parameters, where %s indicates a string type and %d indicates an integer type.
  3. VALUES (%s, %d): Specifies the values to be inserted into the columns of the wp_students table.
  4. $result = $wpdb->query($insert_query);: Executes the INSERT statement and stores the result in the $result variable.
  5. if ($result) {...}: Checks whether the statement executed successfully, if so, displays a success message; otherwise, displays an error message.

System Requirements:

  • WordPress (Version 5.x or higher)
  • PHP 7.x or higher
  • MySQL Database

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

No additional libraries need to be installed as $wpdb is part of WordPress.

Tips:

  • Ensure that you have created the wp_students table in your WordPress database before attempting to insert data.
  • Double-check data types to avoid errors when inserting data into the database.


Related

How to Force HTTPS in WordPress

A step-by-step guide on how to force HTTPS in WordPress, ensuring that all traffic to your website is redirected to HTTPS, thus enhancing security and improving SEO.
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.
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.
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.
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.
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.
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.
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.

main.add_cart_success