Page 1 of 1

What's Wrong on this code ?

Posted: Sat Apr 21, 2007 11:10 am
by Segman
what's wrong on this code ?

Code: Select all

while ($Row = mysql_fetch_array($Result))
{
extract($Row);
}

Posted: Mon Apr 23, 2007 1:22 pm
by Lixas
[PHP]
while ($Row = mysql_fetch_array($Result))
{
extract($Row);

// note this line
echo "$col1, $col2, $col3";

}[/PHP]

http://lt2.php.net/extract

Note:
This topic will be moved to PHP section

Posted: Mon Apr 23, 2007 9:39 pm
by barnes
Smart guy. I should put more time into learning PHP.