Welcome Guest, Not a member yet? Register   Sign In
Validate Drop Down Selections
#4

[eluser]iConTM[/eluser]
The date check finetuned:
Code:
function date_check ($value)
{
    //match the format of the date
    if ( preg_match ("#^([0-9]{2})/([0-9]{2})/([0-9]{4})$#", $value, $parts) )
    {            
        //check weather the date is valid of not
        if( checkdate($parts[2],$parts[1],$parts[3]) )
        {
            return true;
        }
    }
                
    $this->load->library('validation');
    $this->validation->set_message(__FUNCTION__, 'The %s field must have dd/mm/yyyy format.');
    return FALSE;    
}


Messages In This Thread
Validate Drop Down Selections - by El Forum - 09-01-2010, 08:57 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 10:55 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:00 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:14 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:20 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:26 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:42 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:50 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 11:59 AM
Validate Drop Down Selections - by El Forum - 09-01-2010, 01:21 PM
Validate Drop Down Selections - by El Forum - 09-01-2010, 01:23 PM
Validate Drop Down Selections - by El Forum - 09-01-2010, 01:35 PM
Validate Drop Down Selections - by El Forum - 09-01-2010, 04:06 PM
Validate Drop Down Selections - by El Forum - 09-01-2010, 05:54 PM
Validate Drop Down Selections - by El Forum - 09-02-2010, 12:35 AM
Validate Drop Down Selections - by El Forum - 09-02-2010, 08:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB