Hi,
I want to send an array of values to another program
I'm using the header function to call the new program (for validation reasons).
Trouble is, the array is quite big and the only way I know how to send it is via url encoding e.g. newprog.php?array=$array in this case, the array is too big and it causes the address to be corrupted in some way leading to the page not being able to be found.
Is there another way to get arrays passed to new programs when using the header function?
What would be the method used my professionals?
TIA
Chris