[eluser]manishchndk[/eluser]
I have written the following code in my controller but it is giving me error : Parse error
<?php
class Login extends Controller {
function Login()
{
parent::Controller();
$this->load->library('session');
$this->load->helper('url');
}
function index()
{
$a = array(
'session_id' => 'random hash',
'last_activity' => 'timestamp'
)
$this->session->mani($a);
$this->load->view('admin/admin_login_view');
}
}