Files
freeCodeCamp/mock-guide/english/php/functions/cookies/index.md

12 lines
551 B
Markdown
Raw Normal View History

---
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:
<!-- Please add any articles you think might be helpful to read before writing the article -->
- [PHP setcookie() Function](https://www.w3schools.com/php/func_http_setcookie.asp)