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 escape in php?
What is a closure in php?
Tell me when a conditional statement is ended with an endif?
How does php work with apache?
Tell me how can we display information of a variable and readable by human with php?
How do you clear environment variables?
How the values are ordered in an array?
Which parts of php are case sensitive?
What is the use of "enctype" attribute in a html form?
How can you retrieve a cookie value?
Is set in php?
Tell me what is the use of the function htmlentities?
What is whitespace in php?
What does $_env means?
What is php data type?