Download - For loops in PHP

Transcript
Page 1: For loops in PHP

FOR-LO

OPS

SU

RA

J M

OT

EE

Page 2: For loops in PHP

FOR LOOPS

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

Page 3: For loops in PHP

EXERCISE 1:

OUTCOME 0 TO 10 ON YOUR Screen

Page 4: For loops in PHP

EXERCISE 2:

$colors = array("red", "green", "blue", "yellow"); 

Print all content in this array using for each loop