Are there any best practices for organizing and displaying images on a website using PHP?

When organizing and displaying images on a website using PHP, it is important to create a structured folder system to store the images. This can help in easily retrieving and displaying the images on the website. Additionally, using a database to store information about the images such as file paths, titles, and descriptions can help in efficiently managing and displaying the images on the website.

// Create a folder structure to store images
$uploadDir = 'uploads/';
if (!file_exists($uploadDir)) {
    mkdir($uploadDir, 0777, true);
}

// Sample code to save image information in a database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "images";

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

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

// SQL query to create a table to store image information
$sql = "CREATE TABLE images (
    id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
    title VARCHAR(30) NOT NULL,
    description VARCHAR(100),
    file_path VARCHAR(100) NOT NULL
)";

if ($conn->query($sql) === TRUE) {
    echo "Table images created successfully";
} else {
    echo "Error creating table: " . $conn->error;
}

$conn->close();