Posted by TMN on 02/15/07 14:52
Hi
I would like to append stuff to an array but doing it by reference -
this is not working - can anyone help ?
$anArray[]= "";
$ref = &$anArray[];
$ref = "a";
$ref = "b";
$ref = "c";
anArray now contains a,b and c
Thanks
Tim
[Back to original message]
|