Examples / Documentation https://dl.dropbox.com/u/19701113/codecanyon/cookiesmanagerclass/index.html This is a very useful class to manage and use cookies on an easier way. See the live preview for some examples. Set cookies Destroy cookies Massa destroy Count cookies Cheak if cookies are enabled Changelog 1.0 First release 1.1 Little improvement to the code
Key Features Easy to use with existing code No PHP knowledge required Secure session storage Session data stored in files or in a database Simple admin area View the data in sessions Clear sessions data Lightweight code Does not replace the use of $_SESSION Most shared hosting providers use a shared temp folder for session storage, this opens a very large security hold for any sites that rely on the session being private as it allows...
Description This script is meant to store and retrieve variables in a central place. The values can be stored in three ways. Temp: Variables are accessible withing one script execution (like normal variables). Session: Variables that are accessible from all the pages for one user (saved in session). Application: Variables are accesible for all users from all pages (saved in file). This way you have all your variables in one place and ha...