devilbox/.devilbox/www/htdocs/_ajax_db.php
2016-10-16 12:07:29 +02:00

11 lines
186 B
PHP

<?php
require '../config.php';
if (isset($_GET['size'])) {
echo getDBSize($_GET['size']);
} elseif (isset($_GET['table'])) {
echo getTableCount($_GET['table']);
} else {
echo '0';
}