How can I modify my PHP code to include values from a different table in the database in my output?

To include values from a different table in the database in your PHP output, you can use SQL JOIN queries to fetch data from multiple tables based on a common column. You can then access the values from the different tables in your PHP code by referencing the appropriate columns in the result set.

<?php
// 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);
}

// SQL query to select data from multiple tables using JOIN
$sql = "SELECT table1.column1, table2.column2
        FROM table1
        JOIN table2 ON table1.common_column = table2.common_column";

$result = $conn->query($sql);

// Output the data
if ($result->num_rows > 0) {
    while($row = $result->fetch_assoc()) {
        echo "Column 1: " . $row["column1"]. " - Column 2: " . $row["column2"]. "<br>";
    }
} else {
    echo "0 results";
}

$conn->close();
?>