mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-21 05:43:08 +00:00
11 lines
202 B
PHP
11 lines
202 B
PHP
<?php
|
|
require '../config.php';
|
|
|
|
if (isset($_GET['size'])) {
|
|
echo $MySQL->getDBSize($_GET['size']);
|
|
} elseif (isset($_GET['table'])) {
|
|
echo $MySQL->getTableCount($_GET['table']);
|
|
} else {
|
|
echo '0';
|
|
}
|