how to store loop inside an array in php 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;
}