The DBGP protocol does not return a global variable in command property_get.
New way to get the global variable. If you add to a $GLOBALS you can return.
Imagine, that you want to get $_GET['page']. The property_get return null.
But if you make an eval with this command.
The DBGP protocol does not return a global variable in command property_get. New way to get the global variable. If you add to a $GLOBALS you can return.
Imagine, that you want to get $_GET['page']. The property_get return null. But if you make an eval with this command.
$GLOBALS['a-random-value-here']=$_GET['page']
The return is the $_GET['page'].