Hi Friends,

I would like to know where the cookies will be stored?

I have enabled cookies using session.use_cookies = 1. 

I found cookies will be stored in the environmental variable
HTPP_COOKIE_VARS.

But I didn't find anywhere this variable in my php.ini file.

If I want to print all cookies stored in my browser how can I print?

I tried to print in this way

========================

<?php

        echo "All cookies :".$HTTP_COOKIE_VARS;
        
        echo "<br>previous cookie :".$HTTP_COOKIE_VARS[$Tamilnadu];

        echo "<br>previous cookie :".$Tamilnadu;
        
?>


Output:

        Allcookies:
        Previouscookie:
        Previouscookie:Chennai

===========================


Please tell me how to print all the stored cookies in my browser and
where these cookies will be stored?


Where Can I see all these cookies?? Any logs we have to check??


Where can I see the http response headers?? (like cookies and stuff
)..Do I need to use any protocol analyzer?


Thanks in advance

Balaji
      

**************************Disclaimer************************************************

Information contained in this E-MAIL being proprietary to Wipro Limited is 
'privileged' and 'confidential' and intended for use only by the individual
 or entity to which it is addressed. You are notified that any use, copying 
or dissemination of the information contained in the E-MAIL in any manner 
whatsoever is strictly prohibited.

***************************************************************************************

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to