1.Where are the cookies storing ?
2.What is the drawback of using cookies ?
3. If two site is having same cookie name and different
values what will be the output if we echo the cookie name
from those sites ? How can we solve this issue (How can we
specify the domain name)?

Answers were Sorted based on User's Feedback



1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / pradeep

For 2nd question
1.If clients disables cookies, then we can save a cookie.
2.As data is stored in a txt file. there is no security.
3.For each web site only 20 cookies are allowed.i.e
limitation of the size

Is This Answer Correct ?    6 Yes 0 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / guest

1.In client side

Is This Answer Correct ?    5 Yes 0 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / ranjan

3. domain name can be mentioned as a parameter in setcookie
function

Is This Answer Correct ?    5 Yes 0 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / binoyav

2. Drawback of cookies is they are less secure. For example,
if you are using windows machine, cookies will be stored in
cookies folder. So others can copy that file and paste in
his machine. So that he can login with other user's
username and password.

I have answered in this way. Next question from the
interviewer was 'How can we make cookies secure ?' :-(
Anybody please answer this question.

Is This Answer Correct ?    3 Yes 0 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / rubina

Binoyav what i think the reply to your answer is:
Storing the state in the web server -- the middle tier --
can solve the problem of increased request size and protect
the state of an application from accidental or intentional
changes a user might make.

Is This Answer Correct ?    0 Yes 0 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / meenakshisundaram

1.Cookies are stored in Client side.
2.i.If more than 20 cookie variables stored in client side then error may occur "size of cookie exceed the limit" like that...
ii.To overcome this, we can store these cookies in single array. but anyway if the size of the cookie exceed the limit then again same error will occur. Only we can solve the count of cookie variable limit by using array.
3.Yes we can pass the domain details as a parameter while creating cookie itself

Is This Answer Correct ?    0 Yes 0 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / abhi kakade

I have answered in this way. Next question from the
interviewer was 'How can we make cookies secure ?' :-(
Anybody please answer this question.
Ans : there are two types of cookies 1) permanent 2)
temporary temporary cookies are secure those cookies file
gets deleted when browser session ends.

Is This Answer Correct ?    1 Yes 1 No

1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is havi..

Answer / ranjan

Pradeep I am not getting it. How there is no security when
cookie is also a txt file.

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More PHP Interview Questions

How cookies are trported from browsers to servers?

0 Answers  


How data or variable can be receive or send from PHP to HTML page??

3 Answers   TCS,


How to parse configuration file in php?

0 Answers  


What is the differences between $a != $B and $a !== $B?

0 Answers  


How to strip whitespace (or other characters) from the beginning and end of a string?

0 Answers  






What is magic function in php?

0 Answers  


write the function to fetch a image from mysql databases (datatype blob).

1 Answers  


What is the difference between pop3 IMAP and MAPI?

0 Answers  


How is session id stored in browser?

0 Answers  


Is PHP runs on different platforms (Windows, Linux, Unix, etc.)?

0 Answers  


What is isset function in php?

0 Answers  


Is python better than php?

0 Answers  


Categories