hello,
I am trying to fill an array with data with a while statement, I cant seem to do it right and i am having trouble finding it in the manual. THis is what I have
$array = array();
while ( $row = mysql_fetch_array($result) ) {
$array[] = $row['event_id'];
}
Alex