Categories
PHP

Loop Through an Associative Array PHP


foreach (array_expression as $key => $value) {
echo $key;
}