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.

Here is the PHP code to connect to and retrieve data from a MySQL database:

<?php
$servername = "localhost";  // Database server address
$username = "root";         // Database username
$password = "";             // Database password
$dbname = "my_database";    // Database name

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

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

// Execute SQL query
$sql = "SELECT id, name, email FROM users";
$result = $conn->query($sql);

// Check and display data
if ($result->num_rows > 0) {
    // Output data of each row
    while($row = $result->fetch_assoc()) {
        echo "ID: " . $row["id"]. " - Name: " . $row["name"]. " - Email: " . $row["email"]. "<br>";
    }
} else {
    echo "0 results";
}

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

Explanation of Each Line of Code:

  1. Initialize Connection Information:

    • $servername: Database server address, usually "localhost".
    • $username: Database username.
    • $password: Database password.
    • $dbname: The name of the database to connect to.
  2. Create Connection:

    • new mysqli($servername, $username, $password, $dbname): Creates a MySQLi connection object with the provided information.
  3. Check Connection:

    • if ($conn->connect_error): Checks if there was an error connecting. If there is an error, the script stops and displays an error message.
  4. Execute SQL Query:

    • $sql = "SELECT id, name, email FROM users";: Prepares the SQL statement to retrieve data from the users table.
    • $result = $conn->query($sql);: Executes the SQL statement and stores the result in the $result variable.
  5. Check and Display Data:

    • if ($result->num_rows > 0): Checks if there are any results returned.
    • while($row = $result->fetch_assoc()): Iterates through each row of data and prints out information for each row.
  6. Close Connection:

    • $conn->close();: Closes the database connection after the task is completed.

PHP Version:

The provided code is compatible with PHP version 5.6 and above. MySQLi functions and methods are supported in these versions.



Related

Example of Factory Pattern in PHP

A guide on the Factory Pattern in PHP with a concrete example, explaining how to implement and use this design pattern in object-oriented programming.
Check if a given String is Binary String or Not using PHP

A guide on how to check if a given string is a binary string (containing only `0` and `1` characters) in PHP. This article uses basic PHP string functions.
Update multiple columns in MySQL using PHP

A guide on how to update multiple columns in MySQL using PHP. This PHP code uses the UPDATE statement to change multiple column values in a MySQL database.
How to remove Punctuation from String in PHP

A guide on how to remove punctuation from a string in PHP. This article explains how to use the `preg_replace` function to strip unwanted punctuation marks from a string.
Comprehensive guide to concatenating strings in PHP

A detailed guide on all the ways to concatenate strings in PHP, including the concatenation operator, string functions, and other methods.
How to pass Authentication Header Token when POSTing data to an API using PHP

A detailed guide on how to use cURL in PHP to pass `Authentication Header Token` when POSTing data to an API. This solution ensures secure and authenticated requests to the API.
How to extract numbers from a string in PHP

This article demonstrates how to extract numbers from a string in PHP using various methods such as regex (regular expressions), built-in functions like `preg_match_all`, `filter_var`, and manual approaches.
Multithreading in PHP using the pthreads library

A comprehensive guide on how to implement multithreading in PHP using the `pthreads` library. This article covers installation steps, examples, and how to use multithreading to improve PHP application performance.
Example of Object-Oriented Programming (OOP) in PHP

A guide with a basic example of Object-Oriented Programming (OOP) in PHP, explaining how to use classes and objects to structure code using OOP principles.
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.

main.add_cart_success