What is register_globals in php?
Answer Posted / imteyazhaider
When on, register_globals will inject your scripts with all
sorts of variables, like request variables from HTML forms.
This coupled with the fact that PHP doesn't require
variable initialization means writing insecure code is that
much easier. It was a difficult decision, but the PHP
community decided to disable this directive by default.
When on, people use variables yet really don't know for
sure where they come from and can only assume. Internal
variables that are defined in the script itself get mixed
up with request data sent by users and disabling
register_globals changes this.
Is This Answer Correct ? | 20 Yes | 6 No |
Post New Answer View All Answers
How to randomly retrieve a value from an array?
Explain me soundex() and metaphone()?
What are the array functions in php?
How does php server work?
Explain the difference between static and dynamic websites?
How to access a specific character in a string?
How do I run a php script?
How is the comparison of objects done in php?
How to create a session? How to set a value in session? How to remove data from a session?
Is age interval or ordinal?
Why php 7 is faster?
Where can I learn php?
Can we set session value in javascript?
What is php7?
What is the function of mysql_real_escape_string in php?