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 to Retrieve the Session ID of the Current Session?
Explain me what is the w3c?
What are different types of runtime errors in php?
How to check an key is exists in array?
Tell me are parent constructors called implicitly inside a class constructor?
How to list all values of submitted fields?
How can we change the value of a constant?
What is session in PHP. How to remove data from a session?
How to create a mysql connection?
What library is used for pdf in php?
What exactly is PHP?
What is $_ server request_method == post?
Does php have a future?
Explain about the data types in PHP?
What are the string functions in php?