What are best practices for organizing and displaying news articles on a website using PHP and a database?

When organizing and displaying news articles on a website using PHP and a database, it is important to create a database table to store the articles with fields such as title, content, date, and author. Use PHP to query the database and retrieve the articles in a specified order (e.g. by date) for display on the website. Additionally, consider implementing pagination to display a limited number of articles per page for better user experience.

// Connect to the database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "news_database";

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

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

// Query the database to retrieve news articles
$sql = "SELECT * FROM articles ORDER BY date DESC";
$result = $conn->query($sql);

// Display the news articles
if ($result->num_rows > 0) {
    while($row = $result->fetch_assoc()) {
        echo "<h2>" . $row["title"] . "</h2>";
        echo "<p>" . $row["content"] . "</p>";
        echo "<p>Author: " . $row["author"] . " | Date: " . $row["date"] . "</p>";
    }
} else {
    echo "No articles found.";
}

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