When I'm trying to send more then 1 variable via url adress like
somesite/file.php?x=5&y=7
Second variable does NOT exists....
I tryed already with ' & ', print_r(&_GET), isset(&_GET)... and damn... nothing is working. I guess it's all about configuration. Anyway, know what should I do to make it working?
BTW
When I change variables like y=7&x=5 then 'y' exists but x doesn't..
There is no &_GET, you should be using $_GET['y'] or $_GET["y"]
I take it "$_GET" by itself is just returning whatever the first variable is, but again, use the aforementioned method for best results. A user can easily mess around with GET type variables, so you need to ensure that the values coming in to the server are valid.