Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-28 Thread -<[ Rene Brehmer ]>-
Hi Ernest E Vogelsinger, On Sat, 23 Nov 2002 17:07:50 +0100, you wrote about "Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???" something that looked like this: >At 16:50 23.11.2002, -<[ Rene Brehmer ]>- sai

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-23 Thread Ernest E Vogelsinger
At 16:50 23.11.2002, -<[ Rene Brehmer ]>- said: [snip] >Shouldn't > echo($$pdag[$n]); >be able to pull the string contents of the array? Or is there some extra >needed when using referenced variable? [snip] This

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-23 Thread -<[ Rene Brehmer ]>-
Hi @ Edwin, On Fri, 22 Nov 2002 12:34:35 +0900, you wrote about "Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???" something that looked like this: >> This is my test code: >> >> $premieredag = >> array(&qu

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread @ Edwin
Hello, "-<[ Rene Brehmer ]>-" <[EMAIL PROTECTED]> wrote: > I've run into something I don't understand... > > This is my test code: > > $premieredag = > array("2002-11-22","2002-11-29","2002-12-06","2002-12-18"); > $d20021122 = array("001"); > $d20021129 = array("002","003","004"); > $d2

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread -<[ Rene Brehmer ]>-
array contents through reference variable ... why doesn't this work???" something that looked like this: > >The message should say: > >Perhaps the error lies in > >for ($n = 0; $i < count($$pdag); $n++) { > >You have $$pdag instead of $pdag. You also have

RE: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread Van Andel, Robert
rehmer ]>-; [EMAIL PROTECTED] Subject: RE: [PHP] echo'ing array contents through reference variable ... why doesn't this work??? Perhaps the error lies in for ($n = 0; $i < count($$pdag); $n++) { You have $$pdag instead of $$pdag. You also have it lower down in the code. Robbert van

RE: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread Van Andel, Robert
:05 PM To: [EMAIL PROTECTED] Subject: [PHP] echo'ing array contents through reference variable ... why doesn't this work??? I've run into something I don't understand... This is my test code: $premieredag = array("2002-11-22","2002-11-29","2002-12-06&quo

[PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread -<[ Rene Brehmer ]>-
I've run into something I don't understand... This is my test code: $premieredag = array("2002-11-22","2002-11-29","2002-12-06","2002-12-18"); $d20021122 = array("001"); $d20021129 = array("002","003","004"); $d20021206 = array("005","006","007"); $d20021218 = array("008","009"); for