Hello,
If I have a mysql table called "Items" is there a built in php function to build an array of the field names of the table?? How can I do this?
field names array mqsql php
You can use [man]mysql_field_name[/man]. However, why use the MySQL extension when you can use the MySQLi extension or the PDO extension?