Write a PHP program to print table of number

Introduction

PHP is a server scripting language, and It is a powerful tool for making interactive and dynamic Web-pages. I have used WampServer 2.2 for following example.

<?php
 
for ($i = 1; $i <= 10; $i++){
 
$product = 12 * $i;
 
echo "12 x $i: $product <br/>";
}
 
?>

Result

Write a PHP program to print table of number
Write a PHP program to print table of number

Leave a Comment