0
to print these numbers using for loop 30 33 39
this is sample question for me
4 Answers
+ 1
please describe this code detailed... having some error on this cose
+ 1
error syntax error,unexpected'[',Expecting ",or on line 3
0
$numb = array(30,33,39);
for($i=0;$i<4;$i++)
echo numb[$i]." "; // $numb != numb fail
0
Sorry!
<?php
$numb = array(30,33,39);
for($i=0;$i<4;$i++)
echo $numb[$i]." ";
?>