include 'functions.php'; $table = $_GET['table']; $result = runQuery("SELECT * FROM $table"); // Print the table echo '
'.$meta->name.'('.$meta->type.') | '; } // Print the rows while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { echo '
---|
'.$x.' | '; } echo '