[php]
multiplication tables <?php if(isset($_post['submit1'])) { $start=$_post['start']; $final=$_post['final']; $m=$_post['multiplier']; for($start;$start<=$final;$start++) { $ans=$start*$m; print $start. "*" . $m . " = ". $ans . ""; } } ?> STARTING NUMBER:
FINAL NUMBER:
ENTER MULTIPLIER:
[/php]
I ve written this code to print multiplication tables…But nothing gets printed…I want to figure out what mistake i ve made…Kindly help