Svip
Board's Foremost Baby-Eater
I eat babies.
Posts: 101 Reputation: 29
37 / /
Joined: Jul 2005
|
RE: Cant get this math.
E.g.
code: <?php
$array = array(3, 6, 9, 12);
foreach($array as $k => $v)
echo "$k => $v;\n"
?>
Output
code: 0 => 3;
1 => 6;
2 => 9;
3 => 12;
Learn to array...
|
|