- or download this
while($element = each ($fruit)) {
echo $element['key'];
...
echo $element['value'];
echo '<br />';
}
- or download this
while (($key, $value) = each (%fruit) {
print $key;
...
priint $value;
print '<br />';
}
- or download this
for x in 0...c.length do print c[x], " " end