array.php

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