Course Content
Introduction
PHP is an object-oriented scripting programming language that allows web developers to create dynamic and interactive web pages. PHP stands for Hypertext Preprocessor (PHP).
0/14
Control Statement
A control statement is a statement that determines whether other statements will be executed.
0/7
PHP for Beginners
About Lesson

The for loop is used when you know in advance how many times the script should run.

 

Syntax:

for (init counter; condtion; increment counter) {
 	code to be executed for each iteration;
}

 

Example:

for ($num = 0; $num < 10; $num++) {
  	echo "The number is: $num <br>";
}>