Hello,
How can I sort largest to smallest?
Like “ORDER BY Data_length DESC”
[php]
$result = $mysqlibag->query(“SHOW TABLE STATUS”);
while($table = $result->fetch_array()) {
echo “Table Name: “.$table[‘Name’].” Rows: “.$table[‘Rows’].” Size: “.$table[‘Data_length’].”
”;
}
[/php]
Thanks