How can PHP be used to count and display entries from a database as a range of numbers?

To count and display entries from a database as a range of numbers in PHP, you can use a SQL query to count the total number of entries in the database table. Then, you can use a loop to display the entries in a range of numbers, such as from 1 to the total count of entries.

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

// Count total entries in the database
$sql = "SELECT COUNT(*) as total FROM table_name";
$result = $conn->query($sql);
$row = $result->fetch_assoc();
$total_entries = $row['total'];

// Display entries in a range of numbers
for ($i = 1; $i <= $total_entries; $i++) {
    echo "Entry " . $i . "<br>";
}

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