Re: [PHP] sending array

2003-01-15 Thread [-^-!-%-
This method seems to have a size limitation (which is very small). If your array is (relatively) large, page two will not display the passed values. I'm not sure the url string became too long or if the problem came from SERIALIZE(). Just beware. FYI -john =P e p i e D e s i g n s www.pe

Re: [PHP] sending array

2003-01-15 Thread Jason Wong
On Thursday 16 January 2003 23:59, Gerald Timothy Quimpo wrote: > e.g., you might have a system whereby you encode the array > somehow into something easily parsed, e.g., index->value > pairs separated by a special delimiter, or urlencoded index > and value separated by a space. save the encoded

Re: [PHP] sending array

2003-01-15 Thread Gerald Timothy Quimpo
On Wednesday 15 January 2003 08:59 pm, Danielle van Gladbach wrote: > I am trying to send an array from one php to another: > > $org["index-A"]=1701; > $org["index-B"]=1209; > > print "test2\n"; > > But if I try to read te array in test2.php, I get "Warning: Variable > passed to each() is n

Re: [PHP] sending array

2003-01-15 Thread Danielle van Gladbach
It works thanks Here is the code, if anyone has the same problem: test1.php test2\n"; ?> test2.php \n"; } ?> Jason Wong wrote: > On Wednesday 15 January 2003 20:59, Danielle van Gladbach wrote: > > > I am trying to send an array from one php to another: > > > > $org["index-A"]=1701; >

RE: [PHP] sending array

2003-01-15 Thread Mark Charette
You know, if you actually looked at the link you've created you'd find your answer ... > -Original Message- > From: D.M. van Gladbach [mailto:[EMAIL PROTECTED]] > > There not much in there because I strip it for testing. > > test1.php > $org["index-A"]=1701; > $org["index-B"]=1209

Re: [PHP] sending array

2003-01-15 Thread D.M. van Gladbach
le van Gladbach" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, January 15, 2003 6:59 AM > Subject: [PHP] sending array > > Hi, > > I am trying to send an array from one php to another: > > $org["index-A"]=1701; > $o

Re: [PHP] sending array

2003-01-15 Thread Jason Wong
On Wednesday 15 January 2003 20:59, Danielle van Gladbach wrote: > I am trying to send an array from one php to another: > > $org["index-A"]=1701; > $org["index-B"]=1209; > > print "test2\n"; > > But if I try to read te array in test2.php, I get "Warning: Variable > passed to each() is not

Re: [PHP] sending array

2003-01-15 Thread Rick Emery
show us the test1.php code. show us the test2.php code. We can't read your mind. - Original Message - From: "Danielle van Gladbach" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 6:59 AM Subject: [PHP] sending array Hi, I am t

[PHP] sending array

2003-01-15 Thread Danielle van Gladbach
Hi, I am trying to send an array from one php to another: $org["index-A"]=1701; $org["index-B"]=1209; print "test2\n"; But if I try to read te array in test2.php, I get "Warning: Variable passed to each() is not an array ". Can anyone help me Danielle -- PHP General Mailing Lis