In what ways can HTML be integrated with PHP and MySQL to display the data generated by the backend on a website?

To display data generated by the backend (PHP and MySQL) on a website, you can use PHP to connect to the MySQL database, retrieve the data, and then integrate it into HTML to display on the webpage. This can be done by running a MySQL query in PHP to fetch the data, storing it in variables, and then echoing those variables within the HTML code.

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

// Fetch data from MySQL
$sql = "SELECT * FROM table";
$result = $conn->query($sql);

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

$conn->close();
?>