PHP Storage Class is a very simple to use class which lets you store all your configuration and settings in simple configuration files. The class is very easy to use with any of your existing projects, just drop it in and start using. Settings Class comes with two predefined drivers (1) File Driver (2) MySQL Driver – Using which you can easily switch between File based storage or MySQL based storage. Usage is as simple as using two metho...
Key Features Works with any .php file Ensures the compatibility of your scripts across varying systems Can force / emulate 177 php.ini settings Simple and easy to use Lightweight Supported Settings precision y2k_compliance output_buffering output_handler zlib.output_compression zlib.output_compression_level zlib.output_handler implicit_flush unserialize_callback_func serialize_precision open_basedir highlight.string highligh...
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...