Help for this page

Select Code to Download


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