Welcome Guest, Not a member yet? Register   Sign In
Validating a Form - How to set values on Dropdown Boxes?
#5

[eluser]pistolPete[/eluser]
How about that:

Code:
function your_callback()
{
     $day = $this->input->post('day');
     $month = $this->input->post('month');
    
     if($month == 2 && $day > 30)
     {
          return FALSE;
     }
    
     return TRUE;
}


Messages In This Thread
Validating a Form - How to set values on Dropdown Boxes? - by El Forum - 03-07-2010, 05:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB