RE: [PHP] Passing a list in the Header

2004-11-02 Thread Vail, Warren
Not sure why you need to pass it in the header as apposed to the body, since html provides the following; - snip - snip And in the form postpgm.php $receivedarray = $_POST["arrayvalue"]; // $receivearray will be an array type with all the values above

Re: [PHP] Passing a list in the Header

2004-11-02 Thread Afan Pasalic
to transfer array through header the best way is using serialize()/unserialize() or explode()/implode() functions see manual for more info. -afan Todd Cary wrote: I need to pass a list (preferably an Array) in the header. Can this be done, and if so, what is the best method? Also, how do I ex