Welcome Guest, Not a member yet? Register   Sign In
AJAX / Post / delete record not working
#16

Pass the id into your model method when you call it.

PHP Code:
// Model
public function yourMethod(int $id 0)
{
    if ($id 0)
    {
        // Error
    }
    else
    {
        // Ok
    }
}

// Controller call Model
$model->yourMethod($id); 

or you can getVar in the mode.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: AJAX / Post / delete record not working - by InsiteFX - 06-26-2022, 12:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB