How can PHP be used to display images from a database in a specific layout?

To display images from a database in a specific layout using PHP, you can retrieve the image data from the database, loop through the results, and display each image in a specific HTML layout using the appropriate styling.

<?php
// Connect to database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "database";

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

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

// Retrieve image data from database
$sql = "SELECT * FROM images";
$result = $conn->query($sql);

// Display images in a specific layout
echo '<div class="image-gallery">';
if ($result->num_rows > 0) {
    while($row = $result->fetch_assoc()) {
        echo '<div class="image-item">';
        echo '<img src="data:image/jpeg;base64,'.base64_encode($row['image']).'" />';
        echo '<p>'.$row['description'].'</p>';
        echo '</div>';
    }
} else {
    echo "0 results";
}
echo '</div>';

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