Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To View Cookie Header Lines
How To View Cookie Header Lines? - PHP Script Tips - Understanding and Managing Cookies
✍: FYIcenter.com
If you are interested to see the cookie header lines, or you are having trouble with your cookies and need to see the cookies to help debugging, you can run your script with PHP CGI interface in a command line window. The following tutorial exercise shows you a good example:
>edit showing_cookie_header_lines.php
<?php
setcookie("LoginName","FYICenter");
setcookie("PreferredColor","Blue", NULL, "/store");
setcookie("CouponNumber","07470433",time()+60*60*24*7,"/store");
setcookie("CouponValue","100.00",time()+60*60*24*7,
"/store", ".fyicenter.com");
print("4 cookies were delivered.\n");
?>
>php-cgi showing_cookie_header_lines.php
Content-type: text/html
X-Powered-By: PHP/5.0.4
Set-Cookie: LoginName=FYICenter
Set-Cookie: PreferredColor=Blue; path=/store
Set-Cookie: CouponNumber=07470433; expires=Sun, 05 Mar 2006
02:33:43 GMT; path=/store
Set-Cookie: CouponValue=100.00; expires=Sun, 05 Mar 2006
02:33:43 GMT; path=/store; domain=.fyicenter.com
4 cookies were delivered.
2007-04-24, 5116👍, 0💬
Popular Posts:
How To Give a User Read-Only Access to a Database? - MySQL FAQs - Managing User Accounts and Access ...
What will be printed as the result of the operation below: main() { char *p1; char *p2; p1=(char *)m...
What is Concern in AOP? gA concern is a particular goal, concept, or area of interesth There are m...
How to convert a Unix timestamp to a Win32 FILETIME or SYSTEMTIME? The following function converts a...
Can two catch blocks be executed? No, once the proper catch section is executed the control goes fin...