What is the best approach to sorting and displaying data from a database in PHP?

When sorting and displaying data from a database in PHP, the best approach is to retrieve the data from the database using a query with an ORDER BY clause to sort the data as needed. Once the data is retrieved, it can be displayed using a loop to iterate through the results and output them in the desired format.

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

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

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

// Retrieve data from the database and sort it
$sql = "SELECT * FROM table_name ORDER BY column_name ASC";
$result = $conn->query($sql);

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

$conn->close();