What is register_globals in php?
Answer Posted / sk wazid hussain
when register_globals is set to ON in php.ini?? When it is
set to ON it registers Environment, GET, POST, COOKIE or
Server variables as global variables i.e. you don’t need to
write $_POST['username'] to access the posted ‘username’
variable you can simply use ‘$username’ to access the
$_POST['username'].
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
How do I clear my browser session?
Is multiple inheritance supported in php?
Can constructor be private in php?
What is the use of trim in php?
What is php mainly used for?
When a conditional statement is ended with an endif?
Why do we use polymorphism in php?
What is apache and php?
Why does sql injection happen?
Explain different sorting function in php?
what is PDO?
What is $_ env in php?
How many types of errors in php?
Define anonymous classes in php7?
Do while loops php?