Yeah but, this doesn't work either? I'm trying :)

 $news = mysql_query("select AS from $table");

 while ($mydata = mysql_fetch_object($news))
 {
# $authors = explode(";", $mydata->AS);
 array_push ($authors, explode(";", $mydata->AS));
 }

 foreach($authors as $author)
 {
 echo "$author<br>\n";
 }



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to