Hi
I have a mysql table with field names like
java
java+unix
java+sybase
etc. i am trying to insert these field names into an array called $skills
at the moment i am using this
$skills = array("java", "java+unix", "java+sybase")
But i want to query the database table and get back the field names in this format
"java", "java+unix", "java+sybase"
i have tried using mysql_list_fields and array_fill but no joy
any ideas?