File "index.php"
Full Path: /home/trinadezambia/public_html/ecommerce/index.php
File size: 425 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// ini_set('display_errors', 1);
// ini_set('display_startup_errors', 1);
// error_reporting(E_ALL);
const CI_VERSION = '3.1.13';
$autoload = __DIR__ . '/vendor/autoload.php';
if (file_exists($autoload)) {
require_once $autoload;
if (class_exists('\CodeIgniter3\Bootstrap')) {
\CodeIgniter3\Bootstrap::init();
} else {
echo 'Bootstrap class not found in autoload.';
exit;
}
}