Welcome Guest, Not a member yet? Register   Sign In
error Undefined offset, how is fix it?
#4

[eluser]MiniGod[/eluser]
This is producing the error.
Code:
isset($this->input->post('date_go'))
Pretty obvious if you think about it.

Try this:

Code:
$date_go = $this->input->post('date_go') ? $this->input->post('date_go') : jgmdate("Y/m/j");

$this->input->post() returns FALSE (boolean) if the item you are attempting to retrieve does not exist. (from user_guide)


Messages In This Thread
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 08:10 AM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 10:17 AM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 02:27 PM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 04:21 PM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 07:13 PM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 11:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB