$array[0]=apple;
$array[2]=pear;
How do I add another piece of fruit to the END of this array without specifying a number.
for example .. something like:
$array[]=bananna;
would that add bannana to that array? like:
$array[3]=bananna;
??
thanks for your time.
-mike