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
What is difference between php and html?
Tell me how can we determine whether a php variable is an instantiated object of a certain class?
for image work which library?
Tell me what is the main difference between require() and require_once()?
How does html form submit work?
Where do we use get and post?
How do you create an array in php?
What is the difference between for and foreach in php?
How long is csrf token?
What is the main difference between require() and include()?
Write a php script to get the largest key in an array?
What is ltrim?
What are the steps for the payment gateway processing?
Which functions are used to count the total number of array elements in php?
What is the $_ server php_self variable?