How many ways are there for passing variables between pages
in PHP and what are they ?
Answers were Sorted based on User's Feedback
Answer / vinod kumar wedhera
get(in url) ,Post (through form),Session,Cookies there are
four ways to pass the variable
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / guest
As far as my knowledge there are four ways .They are Pass
the variable in URL,through a session,via a COOKIE or with
an HTML form.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / laku
create the session store the values in it and call in the
next page
create the cookie store the values in it and call in the
next page
and finally hidden values
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ram kaushik
1.Session
2.GET
3.Post
4.using header() function
5.using window.location function
6.using hidden field]
7.cookies
8.query string
9.using ajax function
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / prince antony
1. GET (url)
2. POST (html form)
3. SESSION (For each browser)
4. COOKIES (For Browser and in system cache)
5. FILES (File Names and size)
6. HTTP (For Jquery method Ajax string JSON)
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amit
i think there are more than 4 methods as i know
1.through url
2.through form
3.through coockies
4.session
5.hidden variables
6.through header
| Is This Answer Correct ? | 1 Yes | 1 No |
1.Session
2.Cookies
3.Query string
4.Header
5.Hidden Field
6.GET
7.POST
| Is This Answer Correct ? | 2 Yes | 2 No |
What is php oop?
What is the difference between session_unregister() and session_unset()?
When do you use define() and when do you use const. What are the main differences between those two?
Tell me how can we connect to a mysql database from a php script?
What is a php certification?
How can I embed a java program in php file and what changes have to be done in php.ini file?
How to get best php developer Experience in Php with Sugar CRM / VTiger.
How to count all the lines of code in a directory and sub folder?
How to convert a string to uppercase in php?
Does https prevent csrf?
Does php support multiple inheritances?
what is nl2br?