require_once('site_core.php');
require_once('site_db.php');
// Set the title of the page
$title = "Show Columns";
echo_head($title);
// Build the page content
echo '
'.$title.'
';
// Get the table name from the URL
$table = $_GET['table'];
// Run the query to get the column info
$sql = "SHOW COLUMNS FROM $table";
$result = run_query($sql);
// Generate a table
echo '
';
echo 'field name | data type | null? | index | default value |
';
while ($row = $result->fetch_row()) {
echo '';
foreach ($row as $value) {
echo ''.$value.' | ';
}
echo '
';
}
echo '
';
// Close the container div
echo '
';
echo_foot();
?>