Thread: Size of Table
View Single Post
  #2 (permalink)  
Old 05-20-2006, 08:33 AM
Crane's Avatar   
Crane Crane is offline
Programming Expert
 
Join Date: Nov 2005
Posts: 399
Credits: 0
Rep Power: 14
Crane is on a distinguished road
Default Database size using MySQL and PHP

Code:
$sql = "SHOW TABLE STATUS";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
            $total = $row['Data_length']+$row['Index_length'];
}
echo($total);
Reply With Quote