Code: Select all
SELECT id,name FROM `table`I know
Code: Select all
SHOW FIELDS FROMSorry if what I'm trying to say isn't clear, but that's the best way I can think of stating it right now.
Thanks in advance.
Moderator: General Moderators
Code: Select all
SELECT id,name FROM `table`Code: Select all
SHOW FIELDS FROMCode: Select all
$Data = mysql_fetch_assoc(mysql_query("select * from table",$LinkID));Code: Select all
print_r(array_keys($Data));