foreach loop give us easy way to iterate over array. foreach loop only works with arrays. Syntax: foreach (array_expression as $value) statement foreach (array_expression as $key => $value) statement Example: <?php $array = array(1, 2, 3, 4, 5, 6); foreach($array as $value) { echo $value; } ?> Another Example: <?php $array = array(7, 8,...
RSS Feed