Thread: arrays......
View Single Post
Old 04-10-2009, 04:07 PM   #5 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

PHP Code:
function print_array($array)
{

     foreach(
$array as $element)
     {

          echo 
$element ' ';

     }

}

$array = array(123456);
print_array($array); //output: 1 2 3 4 5 6 
__________________
Tanax is offline  
Reply With Quote