This question already has an answer here:
Run the code in local host wamp, but when i uploaded to the server i got this error. Below is my code
<?php
session_start();
$GLOBALS['config'] = array(
'mysql' => array(
'host' => 'localhost',
'username' => 'root',
'password' => '',
'db'=> 'database name'
),
'remember' => array(
'cookie_name' => 'hash',
'cookie_expiry' => 604800
),
'session' => array(
'session_name' => 'user',
'token_name' => 'token',
'secure' => rand(1000, 9999)
)
);
spl_autoload_register(function($class) { // error here
require_once 'classes/' .$class. '.php';
});
</div>