Tools, FAQ, Tutorials:
What Is a Cookie in PHP
What Is a Cookie in PHP?
✍: FYIcenter.com
A cookie is a small amount of information sent by a Web server to a web browser and then sent back unchanged by the browser each time it accesses that server. HTTP cookies are used for authenticating, tracking, and maintaining specific information about users, such as site preferences and the contents of their electronic shopping carts. The term "cookie" is derived from "magic cookie", a well-known concept in computing which inspired both the idea and the name of HTTP cookies.
A cookie consists of a cookie name and cookie value. For example, you can design a cookie with a name of "LoginName" and a value of "FYICenter".
⇒ Sending a Cookie to the Browser in PHP
⇐ Understanding and Managing Cookies in PHP
2016-11-05, 1882🔥, 0💬
Popular Posts:
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...