Posted by TMN on 02/16/07 13:57
On Feb 16, 3:51 pm, "Kimmo Laine" <s...@outolempi.net> wrote:
> "TMN" <nash....@gmail.com> wrote in message
>
> news:1171633666.200970.46200@t69g2000cwt.googlegroups.com...
>
> > $anArray[]= "";
> > $ref = &$anArray[];
> > $ref[] = "a";
> > $ref[] = "b";
> > $ref[] = "c";
>
> > But with this I am ending up with an array inside $anArray not just
> > a,b and c ?
>
> $anArray = array();
> $ref = &$anArray; // No [] here
>
> $ref[] = "a";
> $ref[] = "b";
> $ref[] = "c";
>
> --
> "Ohjelmoija on organismi joka muuttaa kofeiinia koodiksi" - lpkhttp://outolempi.net/ahdistus/- Satunnaisesti päivittyvä nettisarjis
> s...@outolempi.net | rot13(x...@bhgbyrzcv.arg)
Thank you thank you !!!!!!!
Tim
[Back to original message]
|