[eluser]zulubanslee[/eluser]
The controller is called login. Here is the function.
Code:
function verifyaccount($security_code)
{
$this->load->model('usersmodel');
$status = $this->usersmodel->verifyaccount($security_code);
$data['status'] = $status;
$this->load->view('verifyaccountview', $data);
}
Also, where is the error log file;
thanks