You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2018. It is now read-only.
// This block of code check if config file exsist or not. In case it exsist, include the file. If it doesn't exsist, redirect to installation folder
$filename = 'config.php';
if (file_exists($filename))
{
include 'config.php';
} else
{
header("Location: install/");
exit;
}
// End of config file checking code
// This block of function check if details provided are correct or not, if any of the detail is not correct, it will generate mysql error, which will ultimately redirect to the install folder.
function dbconnect($server, $user, $password, $db)