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
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
2 matches
Mail list logo