Thread: Foreach
View Single Post
Old 03-20-2008, 11:05 PM   #13 (permalink)
freenity
The Acquainted
 
freenity's Avatar
 
Join Date: Feb 2008
Posts: 119
Thanks: 17
freenity is on a distinguished road
Default

Quote:
Originally Posted by Orc View Post
PHP Code:
$ar = array();
$num 0;

go();

function 
go()
{
    echo 
$ar[$num];
    ++ 
$num;
    if (
$num count($ar))
        
go();


Figure out what I changed xD

It would give the same result.... (++$num)

Of course I forgot to put global $num, $ar....
__________________
http://feudal-times.net - My PBB Game
http://gwphp.feudal-times.net - My Blog "Gaming With PHP"
freenity is offline  
Reply With Quote