php 5 check array in array with foreach code example
Example: php loop through array
$clothes = array("hat","shoe","shirt");
foreach ($clothes as $item) {
echo $item;
}
$clothes = array("hat","shoe","shirt");
foreach ($clothes as $item) {
echo $item;
}