array.php
$fruit = array('banana','papaya','kiwi'); print count($fruit);$fruit = array('banana','papaya','kiwi'); ?> print count($fruit)."
"; ?>$T = implode($fruit,"<BR>"); print $T$T = implode($fruit,"
"); print $T ?>while (list ($key, $val) = each ($fruit)) { echo "$key => $val, ";while (list ($key, $val) = each ($fruit)) { echo "$key => $val, "; } ?>