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
#2

[eluser]siptik[/eluser]
HI! You can see your error in a log file.




Theme © iAndrew 2016 - Forum software by © MyBB