Im new to php syntax...anyway
"select ID from ratings order by overall_rating DESC"
when i run this sql command in phpMyAdmin it returns:
2,3,1
I am trying to get that 2,3,1 into an array, like $row[0] would = 2, $row[1] would = 3 etc.
However, if I do mysql_fetch_row on that query, only row[0] has a value.
Any way to get this data into an array so i can call it later? any help appreciated, thanks...