In this video i discussed about how to work on Form using JavaScript. How we can take input from user using JavaScript i shown here. This is the beginning discussion about this. You will get more idea about it in the next tutorials of JavaScript Form.
Code: <?php for($i=1;$i<=5;$i++){ print "The value of i is $i<br />"; } print "<br />"; $arr = array(10,20,35,15,80); for($i=0;$i<count($arr);$i++){ print "The value $i index= $arr[$i]<br />"; } ?>
Comments
Post a Comment