What is the different between cookies and session in php?
Answer Posted / 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 |
Post New Answer View All Answers
What percentage of websites use php?
What is the use of header() function in PHP? What the Limitation of HEADER()?
How do you access a get requests url parameter with php?
What is the w3c?
Can we use onclick in submit button?
What is explode() in php?
How to store the uploaded file to the final location?
What is the most convenient hashing method to be used to hash passwords?
What is difference between required and require_once in php?
What does it mean when it says the csrf token is invalid?
What is a simple php method to make a cross domain data request?
What is difference between isset and empty in php?
Which is true about the singleton design pattern?
What is php session start?
Does php have block scope?