What is the different between cookies and session in php?
Answers were Sorted based on User's Feedback
Answer / sri harsha
cookies are stored in client machine and session are stored
in server machine.
Is This Answer Correct ? | 75 Yes | 4 No |
Answer / deepinder
Cookies
- stored on CLIENT machine
- amount of data to be stored is LIMITED
- it can only store STRINGS
- quite FASTER than a session
Session
- stored on SERVER machine
- amount of data to be stored is NOT LIMITED
- it can store OBJECTS
- quite SLOWER as compared to cookies
Is This Answer Correct ? | 38 Yes | 2 No |
Answer / vivek srivastava
Sessions: are basically tokens which are generated when a
user proceeds with a login mechanism. Each time when a user
logged into a website a new and unique token is generated
and it will destroyed whenever he/she logged out from that
site or power goes off. However, session information is
temporary and will be deleted after the user has left the
website.
Cookies:are temporary files which are store in users hard
disk. A cookie is often used to identify a user. Suppose a
user enters into a website and without logging off he/she
closed the page, next time when he/she open the page he/she
found himself/ herself logged in. This is because of
cookies, they store the user information. We can set the
cookies by <b>setCookie()</b> function. The syntax if
setCookie function is <b>setCookie(name, value, expire,
path, domain);</b>.
Is This Answer Correct ? | 30 Yes | 2 No |
Answer / sudheer
Both are stoarage purpose but session is server side &
cookie is client side.
in cooke omly data will store but in sessions objects as
well as data stored.
Is This Answer Correct ? | 17 Yes | 1 No |
keeping track of client request to a webserver from a
browser instance with in a predefined time is called as
session tracking.
we can perform the session tracking in 4 ways.
1) Hidden fields
2) Url rewriting
3) Cookies
4) Session/Http server sessions
Is This Answer Correct ? | 16 Yes | 6 No |
Answer / jeet
1. Session Stored data at server and session_id (PHPSESSID)
at client side(browser). Cookies stored data at client
side(browser) and each time the same computer requests a
page, it will send the cookie too.
2. Sessions are more secured than cookies as data stored at
server side.
3. Sessions can not be blocked by user from browser while
cookies can be.
4. For login Sessions fail as data is served by multiple
servers ( absence of load balancing ) while cookies do not
as stored at cliet.
5. Sessions amount of data to be stored is NOT LIMITED.
Cookies amount of data to be stored is LIMITED.
6. Sessions can store OBJECTS. Cookies can only store STRINGS.
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / shivani modi (msc.cs)
A cookie is a small information that retained on the client
machine, either in rthe browser's application memory or as
a small file written to the user's hard disk.It contains
aname/value pair-
setting a cookies means associating a value with a name and
storing that pairing on the client side..
Getting or reading a cookie means using the name to retrive
the value..
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / ritu
Cookies is an object but session is a process
cookie is an identifier stored on client.session is used
for storing data on the server between client requests.
cookies are stored in client mechine.session are stored in
server mechine
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / abhishek asati
1.Cookies are stored in client side.
Session are stored in server side.
2.Cookies stored limited amount of data.
Session stored unlimited amount of data.
3.Cookies can only store string. Session can store object.
4.We could be save cookie for future reference but session
couldn't. When user close their browser, they also lost the
session.
5. Cookies quite faster than a session.
Is This Answer Correct ? | 3 Yes | 1 No |
Do you know what does mvc stand for and what does each component do?
What is PECL?
What is the tags in PHP is not a valid way to begin and end a PHP code block?
What is api used for?
If there are 10 text boxes in a form having same name, their value are different. Value of which textbox will be received on action script?
20 Answers A1 Technology, Bajaj, DG, Genpact,
How to return ascii value of character in php?
When to use get and post request?
How can I increase my website session?
Explain what does the expression exception::__tostring means?
when we submit any string in single inverted comma('abc') with get or post method,we will get exact string with single inverted comma('abc')by using $_REQUEST[]. But it is giving (\'abc\'). so anybody please help me to remove that slash,therefore i will get exact string...
What happens if an expected input field was not submitted?
Is facebook still written in php?