0, "Index_length" => 0, "Data_free" => 0); foreach (table_status() as $table_status) { $id = js_escape($table_status["Name"]); json_row("Comment-$id", nbsp($table_status["Comment"])); if (!is_view($table_status)) { foreach (array("Engine", "Collation") as $key) { json_row("$key-$id", nbsp($table_status[$key])); } foreach ($sums + array("Auto_increment" => 0, "Rows" => 0) as $key => $val) { if ($table_status[$key] != "") { $val = number_format($table_status[$key], 0, '.', lang(',')); json_row("$key-$id", ($key == "Rows" && $table_status["Engine"] == "InnoDB" && $val ? "~ $val" : $val)); if (isset($sums[$key])) { $sums[$key] += ($table_status["Engine"] != "InnoDB" || $key != "Data_free" ? $table_status[$key] : 0); } } elseif (array_key_exists($key, $table_status)) { json_row("$key-$id"); } } } } foreach ($sums as $key => $val) { json_row("sum-$key", number_format($val, 0, '.', lang(','))); } json_row(""); } else { // connect foreach (count_tables(get_databases()) as $db => $val) { json_row("tables-" . js_escape($db), $val); } json_row(""); } exit; // don't print footer