testing.php - index






















<?php

// testing.php - this file can be deleted if you know it's not needed

if (!config('testing')) {

    if (!
function_exists('mysqli_connect') || config('mysql'))
        include 
"mysql.php";
    else
        include 
"mysqli.php";

    if (
config('dbtemporary'))
        
config('sitename',config('sitename') . " TEMPORARY MODE");
}
else {
    include 
"nomysqli.php";
    
config('sitename',config('sitename') . " READONLY MODE");
}

?>