Hi all,
I am trying to output data from a MySQL database from the column, 'category', however what I have at the moment isnt working. Any suggestions please?
$catrow = mysql_query("SELECT category FROM tuck");
$cate=array();
while($category = mysql_fetch_assoc($catrow));{
$cate[]=$category;
}
echo $cate[0];
echo $cate[1];
Thanks