keshav_jha/bloged

There is no license information available for the latest version (v1.0.2) of this package.

Simple MVC PHP framework

Maintainers

Details

github.com/kj6560/bloged

Source

Issues

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/keshav_jha/bloged

v1.0.2 2022-06-25 06:19 UTC

This package is auto-updated.

Last update: 2025-12-08 20:29:37 UTC


README

#Configure the framework by the following

//site name define('SITE_NAME', 'site_name'); //change this

//App Root define('APP_ROOT', dirname(dirname(FILE))); define('URL_ROOT', '/'); define('URL_SUBFOLDER', ''); define('BASE', 'http://host/'); //change this

$host = "host"; //change this $username = "user"; //change this $password = "password"; //change this $database = "db_name"; //change this R::setup("mysql:host=$host;dbname=$database", $username, $password); R::freeze( TRUE );