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

Not sure what are you doing here. Why don't you like foreach ?? :S

Well, if you want some weird stuff:

PHP Code:
$ar = array();
$num 0;

go();

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

lol :)
__________________
http://feudal-times.net - My PBB Game
http://gwphp.feudal-times.net - My Blog "Gaming With PHP"
freenity is offline  
Reply With Quote