Can I pass an array from one page to another? How can I do this. I tried to use session variables but the problem is the array is passed from one server to another which is a no no when dealing with session variables.
[man]serialize[/man] and then [man]unserialize[/man] on the other server:
$array = array(1,2,3,4,5); echo '<a href="http://www.example.com?array=' . urlencode(serialize($array)) . '">link</a>';
Will give it a try.