Developer-Guide/phpOMS/datastorage/cookie.md
Dennis Eichhorn dd4f5f12b2
Some checks failed
CI / linting (push) Has been cancelled
bug fixes
2024-10-11 19:17:39 +00:00

8 lines
327 B
Markdown

# Cookies
## PHP
Only use cookies when absolutely necessary. Most of the time session data or local storage is the preferred choice. The `CookieJar` class provides you with all the necessary functionality similar to the `SessionManager`. The super global `$_COOKIE` is also overwritten and shouldn't be used anywhere.
## JS