Thread: Foreach
View Single Post
Old 03-20-2008, 10:59 PM   #12 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

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

go();

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


Figure out what I changed xD
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote