I have the following code:
$num_rows=mysql_fetch_array($result);
<?
for (i=0; i<$num_rows; i++)
{//loop in members
$row = mysql_fetch_array($result);
?>
When I run the script containing this I get the following error msg:
Parse error: parse error, expecting `';'' in /var/www/html/dunhill/admin/member-list.php on line 28
line 28 is the for statement line. I can't figure out where the ';' goes.