Welcome Guest, Not a member yet? Register   Sign In
valid_date 500 error
#1

[eluser]Darker[/eluser]
Code:
function valid_date($date)
{
  $birth_day = $this->input->post('birth_day');
  $birth_month = $this->input->post('birth_month');
  $birth_year = $this->input->post('birth_year');
  if(checkdate($birth_month, $birth_day, $birth_year))
  {
    return true;
  } else {
    return false;
  }
}
I'm getting 500 error when doin this in MY_Form_validation.php

Help please, thanks Smile


Messages In This Thread
valid_date 500 error - by El Forum - 10-13-2012, 11:02 PM
valid_date 500 error - by El Forum - 10-14-2012, 03:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB