When using:
while ($article_info = mysql_fetch_array($result)) // List contents of row
{
do whatver
}
If I use $article_info after the loop, I get nothing because it has already gone through all the rows in $result. How do I get it to start from the begining again?






Bookmarks