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 |
Why would we use === instead of ==?
What is polymorphism?
What is the meaning of xdebug?
What are Sub routines?
How send email using php?
How can we convert asp pages to PHP pages?
How to find out, how a user visited a particular page?
Explain the three different kinds of Arrays?
What is the use of isset() in php?
Write the code for upload a video file in PHP.How will You Play this in Your Page.?
2 Answers ASD Lab, Convex Digital,
What is the different between count() and sizeof() in php?
Write a program in php to reverse a number?