Re: [PHP] post an array into another site

2003-12-08 Thread Justin Patrin
Chris W. Parker wrote: Justin Patrin on Monday, December 08, 2003 4:39 PM said: If all you want to do is give an array to another script, sure you can delimit (although that's much more error prone than serializing). Serialize, delimit. It's pretty much the same i

Re: [PHP] post an array into another site

2003-12-08 Thread Mike Migurski
>I have an array in php like this: > >$arr[0][0] = "Something"; >$arr[0][1] = "Hello"; >$arr[0][2] = "Hi"; > >It is possible to post this array to another site in a form? Or how can i do >this? It would help to serialize the array into a string, then pass it as a regular value in a GET or POST req

Re: [PHP] post an array into another site

2003-12-08 Thread Justin Patrin
Chris W. Parker wrote: fred on Monday, December 08, 2003 4:31 AM said: I have an array in php like this: $arr[0][0] = "Something"; $arr[0][1] = "Hello"; $arr[0][2] = "Hi"; It is possible to post this array to another site in a form? Or how can i do this? Yes. Her

RE: [PHP] post an array into another site

2003-12-08 Thread Chris W. Parker
fred on Monday, December 08, 2003 4:31 AM said: > I have an array in php like this: > > $arr[0][0] = "Something"; > $arr[0][1] = "Hello"; > $arr[0][2] = "Hi"; > > It is possible to post this array to another site in a form? Or how > can i do this? Yes. Here is a h

[PHP] post an array into another site

2003-12-08 Thread fred
Hi I have an array in php like this: $arr[0][0] = "Something"; $arr[0][1] = "Hello"; $arr[0][2] = "Hi"; It is possible to post this array to another site in a form? Or how can i do this? Fred -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php