How can PHP be used to create a sorted table based on aggregated data from multiple columns in a SQL table?

To create a sorted table based on aggregated data from multiple columns in a SQL table using PHP, you can first retrieve the data from the database, perform the necessary aggregations using SQL queries, and then use PHP to display the data in a sorted table format based on the aggregated values.

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

// Retrieve aggregated data from multiple columns
$sql = "SELECT column1, column2, SUM(column3) AS total FROM your_table GROUP BY column1, column2 ORDER BY total DESC";
$result = $conn->query($sql);

// Display the data in a sorted table
echo "<table>";
echo "<tr><th>Column 1</th><th>Column 2</th><th>Total</th></tr>";
while($row = $result->fetch_assoc()) {
    echo "<tr><td>".$row['column1']."</td><td>".$row['column2']."</td><td>".$row['total']."</td></tr>";
}
echo "</table>";

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