Jump to content

[SOLVED] get the name of the column from a SQL database ?


lonewolf217

Recommended Posts

Not sure if this is possible or not.  I am trying to consolidate code over several pages, all of which have similar queries where they gather data from a database and then output it to a table.  The main reason right now why they are on separate pages is because the column headers for each of the tables is different, so i was wondering if there was any way i could programmatically get the name of the column in SQL to display ?

or

<?php
$result = mysql_query('SELECT * FROM table_name');
$row = mysql_fetch_assoc($result);
echo '<table><tr><td>'.implode('</td><td>', array_keys($row))."</td></tr>\n";
do {
echo '<tr><td>'.implode('</td><td>',$row)."</td></tr>\n";
}while ($row = mysql_fetch_assoc($result));
echo "</table>\n";
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.