looping array data in php code example
Example 1: php loop through array
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement
Example 2: array loop function php
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement