I am trying to insert user details in db....and it has $id value which should be auto incremented and it is not shown in the form....but i am not able to auto increment the id value becoz of this i need to provide a field for id in view part...which should be avoided......Can anyone help me??
below is my code...
$user->id = $this->request->getPost('id');
$user->name = $this->request->getPost('name');
$user->load = $this->request->getPost('load');
$user->save();