I am facing this (I don't know what to call this) situation I have a URL like
site.com/?tag=value&other=1&more=2
the problem is that when i
var_dump($_GET);
// prints
array( 'other' => '1', 'more' => '2');
for some reason the parameter tag is missing from $_GET array.
any ideas? the server request_uri is
'REQUEST_URI' => string '/site-com/?other=1&more=2'
its even missing in $_SERVER['REQUEST_URI'] and the server is
Linux 4.4.216-1.el6.elrepo.x86_64 x86_64
PHP 7.3
Thanks