Suppose a variable may passed to other page using any of
get,post,session,cookie methods and u want to retrive that
variable value . what is the syntax?
Answer Posted / deepinder
I agree with all the above answers. In addition i would
like to mention that we refer the variable with the name as
mentioned in the previous page to retrieve its value with
$_REQUEST[].
<input type="text" name="variable"> ---->previous page
$value=$_REQUEST['variable']; ------->next php page
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Explain me what is x+ mode in fopen() used for?
What is a controller php?
What is the importance of parser in php?
Why do we use javascript in php?
What is the ioncube php loader?
What are the encryption functions in php?
What was the old name of php?
Difference between $message vs. $$Message in php.
Explain the importance of the function htmlentities.
How to check an key is exists in array?
How is php different from other languages?
How to call javascript function in php on button click?
What is inheritance in php?
What is the difference between php traits vs interfaces?
What is needed to be able to use image function?