HI there,
I am working on a piece of code here now written by a previous developer.
There is a form submission with a couple variables passed over, and usually one would have to put a code like the following to access this variable.
however, on this form handling page, the variable $firstname is just referenced and it seems to be returning the data just fine.
Is there a function/setting in php that allows for this feature? Perhaps in php.ini?
If so, does anyone know what the relevant line of code/setting is?
Thanks!
I am working on a piece of code here now written by a previous developer.
There is a form submission with a couple variables passed over, and usually one would have to put a code like the following to access this variable.
Code:
$firstname=$_GET[firstname]
however, on this form handling page, the variable $firstname is just referenced and it seems to be returning the data just fine.
Is there a function/setting in php that allows for this feature? Perhaps in php.ini?
If so, does anyone know what the relevant line of code/setting is?
Thanks!