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?
Answers were Sorted based on User's Feedback
Answer / 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 |
What is difference between compile time and run time polymorphism?
What language is similar to php?
How we can retrieve the data in the result set of mysql using php?
How to increase the maximum execution time of a script in php?
What kind of things have you done on the social side?
Does mysql need php?
Explain object-oriented methodology in php?
Write a program to get lcm of two numbers using php?
Which is better #define or enum?
Write a statement to show the joining of multiple comparisons in php?
How many days will it take to learn php?
How many escape sequences are recognized in single-quoted strings?