Go and Explore
Exploring my country on bike
Home
PHP
Print Table using for loop in PHP
PHP
Print Table using for loop in PHP
By
Unknown
At 4:56:00 PM
0
<?php
$u="Table of 2 Using PHP";
echo $u."<br>";
for($i=1;$i<=10;$i++)
{
$s=$i*2;
echo " 2 * ".$i." = ".$s."<br>";
}
?>
---------------------------
You Might Also Like
0 comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments ( Atom )
0 comments:
Post a Comment