Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
configuration.php
Go to the documentation of this file.
00001 <?php
00025 define('SESSIONNAME', 'JEFF_SID');
00026 
00030 define('APP_LANGUAGE', 'it_IT');
00031 
00035 define('DBMS', 'mysql');
00036 
00040 define('DB_HOST', 'localhost');
00041 
00045 define('DB_DBNAME', 'db_jeff');
00046 
00050 define('DB_USER', 'root');
00051 
00055 define('DB_PASSWORD', '');
00056 
00060 define('DB_SCHEMA', '');
00061 
00065 define('DB_CHARSET', 'utf8'); 
00066 
00070 define('PWD_HASH', 'md5'); // md5 | sha1 | "empty"(-> no cryptation)
00071 
00077 define('DEBUG', true);
00078 
00079 ?>