How can the issue of long query duration be optimized in PHP when accessing a MySQL database?

Long query duration in PHP when accessing a MySQL database can be optimized by ensuring that the database queries are efficient and well-optimized. This can be achieved by using indexes on the columns being queried, limiting the number of rows returned, and avoiding unnecessary joins or subqueries.

// Example of optimizing query duration in PHP when accessing a MySQL database
// Connect to the database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "database";

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

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

// Example of a well-optimized query
$sql = "SELECT * FROM users WHERE status = 'active' ORDER BY registration_date DESC LIMIT 10";
$result = $conn->query($sql);

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

$conn->close();