php i loop code example
Example 1: for each php
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement
Example 2: while in php
<?php
echo 'nice';
?>
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement
<?php
echo 'nice';
?>