For loop in php
Thursday, November 29th, 2007Think of a bucket of water which is heated at 100 degree centigrate in
Once started getting heated it will store the heat and take more to raise the temp.
Similarly the loops works
for example:
<?php
$i=0;
for($l=1;$l<=$i;i++)
{
echo “www.easytutorial.com is great”;
}
?>
Thanks
krates