<?php
/* 2. Imprime los valores del array asociativo siguiente usando un foreach:*/
$v[1] = 90;
$v[10] = 200;
$v['hola'] = 43;
$v[9] = 'e';
foreach($v as $i){
echo $i . "\n";
}
To embed this program on your website, copy the following code and paste it into your website's HTML: