Is it possible to pass an array to a new page via GET?
So, for instance, if I have an array, $permit[], and want to pass it's contents along to a new page, can I do something like:
header("Location: $SECUREPATH/administration/users_process2.php?permit=" . $permit . "\n");
Not sure of the syntax. Then on the new page, I'd access it with:
$_GET['permit[1]']