Files
freeCodeCamp/mock-guide/english/php/functions/cookies/index.md
Joe Erickson 0890dda962 Add content for PHP strings (#27489)
* Add content for PHP strings

* fix: resolved conflict
2019-02-28 16:37:12 -08:00

12 lines
551 B
Markdown

---
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)