How can I pass one or more variables of type array to another page via $_GET?
I always passed variable values in the form ?a=1&b=2&c=3
?a=1&b=2&c=3
W
Just repeat your $_GET variables like this: name=john&name=lea
$_GET
name=john&name=lea
This gives you an array.
array
I used to believe it would be overwritten!