What best practices should PHP developers follow when retrieving data from multiple tables using SQL queries in PHP?

When retrieving data from multiple tables using SQL queries in PHP, it is best practice to use JOIN statements to efficiently fetch related data in a single query. This helps reduce the number of queries executed and improves performance. Additionally, it is important to sanitize user input to prevent SQL injection attacks.

<?php
// Establish a database connection
$host = 'localhost';
$dbname = 'your_database';
$username = 'your_username';
$password = 'your_password';

$pdo = new PDO("mysql:host=$host;dbname=$dbname", $username, $password);

// Retrieve data from multiple tables using JOIN
$query = "SELECT t1.column1, t2.column2
          FROM table1 t1
          JOIN table2 t2 ON t1.id = t2.table1_id
          WHERE t1.column3 = :value";

$stmt = $pdo->prepare($query);
$stmt->bindParam(':value', $value);
$stmt->execute();

// Fetch the results
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);

// Loop through the results and display them
foreach ($results as $row) {
    echo $row['column1'] . ' - ' . $row['column2'] . '<br>';
}
?>