Welcome Guest, Not a member yet? Register   Sign In
Best way for checking true result
#12

[eluser]cartalot[/eluser]
keep it simple - check for the condition success or fail, then move to appropriate method
Code:
// set it to false
$this->session->set_flashdata("insertsuccess", FALSE);

if ($this->model_name->my_insert($data) == TRUE)
{
// set to true
    $this->session->set_flashdata("insertsuccess", TRUE);
// go to another method
$this->takenextstep();
}
else
{
$this->noresults();
}


Messages In This Thread
Best way for checking true result - by El Forum - 05-07-2012, 09:02 AM
Best way for checking true result - by El Forum - 05-07-2012, 12:17 PM
Best way for checking true result - by El Forum - 05-07-2012, 04:24 PM
Best way for checking true result - by El Forum - 05-07-2012, 08:24 PM
Best way for checking true result - by El Forum - 05-08-2012, 06:14 AM
Best way for checking true result - by El Forum - 05-08-2012, 06:18 AM
Best way for checking true result - by El Forum - 05-08-2012, 06:51 AM
Best way for checking true result - by El Forum - 05-08-2012, 08:56 AM
Best way for checking true result - by El Forum - 05-08-2012, 11:35 AM
Best way for checking true result - by El Forum - 05-27-2012, 10:14 AM
Best way for checking true result - by El Forum - 05-27-2012, 10:28 AM
Best way for checking true result - by El Forum - 07-03-2012, 12:05 PM
Best way for checking true result - by El Forum - 07-26-2012, 11:22 AM
Best way for checking true result - by El Forum - 07-26-2012, 11:49 AM



Theme © iAndrew 2016 - Forum software by © MyBB