I use --foreach()-- to print a my sequence from a DB.
Now I change hosting from PHP4 to PHP3 and foreach() don't work. Does exist a similar function instead Foreach() that works in PHP3?
$a = array (0,7,4 ,2,15,9);
foreach ($a as $v) {
echo "field$v is $valv";}