Quote:
You could always (if your PHP is updated) use this which will output it regardless of the method.
|
this is a bad practice however! and it has nothing to do with PHP updates! it's the setting of register.global directive.
you shouldn't be lazy and use register globals! your software should know and restrict where it retraive data from $_POST or $_GET
anyway, you can use $_REQUEST array which will have the $_GET, $_POST and $_COOKIE variables inside it.