Tools, FAQ, Tutorials:
Mistake on Setting Cookie Path and Domain in PHP
What Is the Common Mistake When Setting Path and Domain on Temporary Cookies in PHP?
✍: FYIcenter.com
A common mistake made by many PHP developers is using an empty string for the expiration time parameter when setting path and domain for temporary cookies. The PHP script below shows an example of this mistake:
<?php # Incorrect use of setcookie() setcookie("LoginName","FYICenter", "", "/", ".fyicenter.com"); # Correct use of setcookie() setcookie("PreferredColor","Blue", NULL, "/", ".fyicenter.com"); ?>
If you run this script, you will get an error:
PHP Warning: setcookie() expects parameter 3 to be long, string given in \php_working_with_cookies.php on line 3
Â
⇒Understanding and Managing Cookies in PHP
⇒⇒PHP Tutorials
2016-11-03, 1168👍, 0💬
Popular Posts:
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...
Where to find tutorials on HTML language? I want to know how to learn HTML. Here is a large collecti...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
Where to see resource detailed information of my API Management Service on Azure Portal? Once you ha...
How to search for the first match of a regular expression using re.search()? The re.search() functio...