Files
freeCodeCamp/guide/english/php/functions/cookies/index.md
Shahbaz Ahmad Siddiqui 3fa796094b Definition added (#26304)
* Definition added

* Removed stub
2019-01-15 17:28:29 -05:00

551 B

title
title
Cookies

Cookies

Definition: A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With PHP, you can both create and retrieve cookie values. The name of the cookie is automatically assigned to a variable of the same name.

More Information: