4 lines
73 B
PHP
4 lines
73 B
PHP
foreach($array as $key => $value)
|
|
{
|
|
echo "Key: $key Value: $value";
|
|
}
|