20
MAR
MAR
0
Posted by: Syndicate
Posted by: Syndicate
Posted by: Syndicate
connects.php // Contains data to connect to the database constants.db.php // Contains the names of database tables mega.db.php // Contains functions for dealing with mysql database // Contains a function that fetch config from the database quickly // $config[''] mega.template.php // PHP Template Engine mega.class.php // include files , operate the Template EngineMega template is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic. This implies that PHP code is application logic, and is ...Continue Reading →
Features
Posted by: Syndicate
require('class.db.php');
// Create
$bind = array( ':id' => $_POST['user_id'], ':user' => $_POST['username']);
db::inst()->insert( "users", array('":id"', '":user"'), ...Continue Reading →