PHP Programing language

adplus-dvertising
Write A program to print the cube of the number from 1 to 10
Previous Home Next
<html>
<head>
<title>print cube no for 1 to 10</title>
</head>
<body>
<?php
$a;
$i;
{
for($a=1;$a<=10;$a++)
{
$i=$a*$a*$a;
echo("$i<br>");
}
}
?>
</body>
</html>
output:
1
8
27
64
125
216
343
512
729
1000
Previous Home Next