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.

In this article, you'll learn how to use Prepared Statements in WordPress to perform SELECT statements, allowing you to query data from tables in the database securely and flexibly with multiple parameters.

global $wpdb;

// SELECT statement with Prepared Statement
$select_query = $wpdb->prepare(
    "SELECT * FROM {$wpdb->prefix}users WHERE ID = %d AND user_login = %s",
    1, 'john_doe'
);

// Execute the query
$results = $wpdb->get_results($select_query);

// Print the data
foreach ($results as $user) {
    echo 'ID: ' . $user->ID . ', Username: ' . $user->user_login . '<br>';
}

Detailed explanation:

  1. global $wpdb;: Declares the global $wpdb variable to use the database access object in WordPress.
  2. $select_query = $wpdb->prepare(...): Uses the prepare method of $wpdb to create a safe SELECT statement with parameters.
  3. "%d" and "%s": Are placeholders for different data types (integer and string).
  4. 1, 'john_doe': The parameter values that will replace the corresponding placeholders.
  5. $results = $wpdb->get_results($select_query);: Executes the query and retrieves the results as an array of objects.
  6. foreach ($results as $user) {...}: Loops through the results and prints each user's information.

System Requirements:

  • WordPress installed on the server.
  • PHP version 5.6 or higher.

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

No additional libraries are needed as the code uses built-in WordPress functions.

Tips:

  • Use Prepared Statements to protect your application from SQL injection attacks.
  • Ensure you are connected to the correct database and that WordPress is activated before executing the query.


Related

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 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.
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.
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.
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.
Creating Captcha for Contact Form in WordPress

A detailed guide on how to add Captcha to the contact form in WordPress to protect your website from spam and automated bots.
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 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.
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 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