Saturday, September 18, 2010

For Loop In PHP

for ($i=1; $i<=5; $i++)
  {
  echo "The number is " . $i . "
";
  }
?>

No comments:

Post a Comment