Hi Gurus,
Newbie here, and doing the worst one can do... hacking at some code to get a desired result. All is ok so far, however, I need to remove the "id" primary key field from the final output. Following code sets up the table definition which ultimately displays each record with corresponding values:
$table_def = mysql_db_query($db, "SHOW FIELDS FROM $table");
Is it possible to limit the SHOW FIELDS command to not display the primary key field?