1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<? session_start(); ?> <?php include_once("_common.php");?>
<? $admin = str_replace("admin+","",$adminid); include("../onlinecs/commonST.php");
$sql = "SHOW TABLE STATUS"; $result = mysql_query($sql); if( mysql_num_rows($result) > 0){ while($row = mysql_fetch_array($result)){ $fsize = $fsize + $row[Data_length] + $row[Index_length]; echo $fsize."</br>"; } } $fsize = substr($fsize,0,-3); echo $fsize; ?>
|