//Write a program to find table of a number
Table of " .$num."
"; for($i=1;$i<=10;$i++) { echo $num*$i; echo "
"; } } ?>