Hi, i was looking trough forums but i can´t find the way..., what i'm trying to do is to store a mysql_query result in an array. I'm mad i can't get it to work after two days...any idea??
Thanks in advance.
How about
while ($row = mysql_fetch_array($result))
{ $array[] = $row['tablename'];
}