1
Votes

For loop in PHP

Posted By learnphp123 on Dec 17, 2009   FROM: advancedphptutorial.blogspot.com report abuse

PHP For Loop, while loops in php, for loop syntax in php, for loop increment

Like while loop, for loop also used to execute the block of codes if the condition is true. FOR is used when you know how many times the script should run.

Syntax:

for (init; condition; increment)
{
code to be executed;
}

init: Mostly used to set a counter (but can be any code to be executed once at the beginning of the loop)
condition: Evaluated for each loop iteration. If it evaluates to TRUE, the loop continues. If it evaluates to FALSE, the loop ends.
increment: Mostly used to increment a counter (but can be any code to be executed at the end of the loop)

Example:

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

Read Full Story from advancedphptutorial.blogspot.com

Post new comment

  • Allowed HTML tags: <a> <strong> <ul> <ol> <li> <table> <tr> <td> <tbody> <embed> <object> <param> <b> <p> <i> <div> <h3> <h4> <br> <img> <style>
  • Lines and paragraphs break automatically.

More information about formatting options