OK.. obviously I'm overlooking something because I can't get this to work.
I'm trying to fetch all the "name" values from my table and put it into an array, using the following code:
$array = mysql_fetch_array(mysql_query("SELECT name FROM comics"));
The problem is that it only assigns the first "name" value, and not the rest of them (assigns it to $array[0]). My queries from within MySQL ("SELECT name FROM comics;") return all 3 values, but I don't know how to get all 3 into an array.
Any help would be appreciated