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 ]- said: [snip

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(2002-11-22,2002-11-29,2002-12-06,2002-12-18); $d20021122

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 is

[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 ($i = 0; $i

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

2002-11-21 Thread Van Andel, Robert
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,2002-12-18); $d20021122 = array(001); $d20021129 = array

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

2002-11-21 Thread Van Andel, Robert
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 Andel -Original Message

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

2002-11-21 Thread -[ Rene Brehmer ]-
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 it lower down in the code. -- PHP General Mailing List (http

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); $d20021206 = array(005,006,007);