Write a PHP program to Print table of Number

Here we are write a PHP program to print table of given number, A table of a number can be printed using a loop.

Logical Part of program:

1. First you have to take a number.
2. Then run the for loop
3. Then Multiply the number with output of for loop ().

PHP program to Print table of Number

Here we are printing table of 9.

<?php 
$num=9;
for($i=1; $i<=10; $i++)
{
 echo $i*$num."<br>";
}
?>

PHP program to Print table of Number using HTML Form

<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>";
 }
}
?>
About Author

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.

Sign up for weekly update

Milkshake is almost ready. If you're interested in testing it out, then sign up below to get exclusive access.