php sessions

Session Management

Session Management

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

Registry Class

Registry Class

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