Here we are write a PHP program to print table of given number, A table of a number can be printed using a loop.
Here we are printing table of 9.
<?php $num=9; for($i=1; $i<=10; $i++) { echo $i*$num."<br>"; } ?>
<form method="post"> <input type="text" name="number" placeholder="Enter number" /> <input type="submit" value="Submit" /> </form> <?php if(isset($_POST['number'])) { $num = $_POST['number']; for($i=1; $i<=10; $i++) { echo $i*$num."<br>"; } } ?>
My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.