How many ways we can pass the variable through the
navigation between the pages?
Answers were Sorted based on User's Feedback
Answer / devendrarjadav
There are three ways to pass variables through the
navigation between the pages.
1. Start the session, register variables that you want to
pass on subsequent pages. In subsequent pages again start
the session so you can get all the varibles that registered
with session.
2. Use query string to pass varibles.
3. With the use of form you can pass varibles which you
have used in the form to the page specified with action
attribute.
| Is This Answer Correct ? | 24 Yes | 1 No |
Answer / somnath
Using session we can pass values from one page to next page.
Also with help of form we can pass hidden values and can get
with the help of $_POST or $_GET depending on form method.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / madhuri kumari
we also use hidden type to send at subsequent page..
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jiten patel
1.Use Form to set and retrive value with in perticular page.
2.Use query string to access the values out side the form.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mayur kannaujia
query string
session
cookie
get & post
hidden form field
| Is This Answer Correct ? | 0 Yes | 0 No |
hello myself Atul saini completed mca in 2007 due to personal problem i cant do job.now i really search 4 a job.i dont know where i go i think simple think is learn php anyone help me wat i can do for a job. thanks
How to find datatype of variable in php?
Explain the changes in php versions?
How can you "tell" MySQL server to cache a query?
What does accessing a class via :: means?
How do I escape data before storing it in the database?
Explain me how to include a file to a php page?
Which is the Best plateform for PHP?
What are the different types of array in php?
How many functions are there in php?
Suppose your Zend engine supports the mode <? ?> Then how can u configure your PHP Zend engine to support <?PHP ?> mode ?
Design a class that should always return a single object ?