mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-27 08:12:28 +00:00
12 lines
203 B
PHP
12 lines
203 B
PHP
<?php
|
|
$CONNECT = TRUE;
|
|
require '../config.php';
|
|
|
|
if (isset($_GET['size'])) {
|
|
echo getDBSize($_GET['size']);
|
|
} elseif (isset($_GET['table'])) {
|
|
echo getTableCount($_GET['table']);
|
|
} else {
|
|
echo '0';
|
|
}
|