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

[eluser]Petsoukos[/eluser]
Hi,

I want to validate a date formed with drop down selections. I have three different drop down menus. (Year, Month, Day)
When it is submitted the controller receives three different POSTS. One for each drop down.

I can make the validation very easy with PHP checkdate() function:

Code:
$y = $this->input->post('y');
$m = $this->input->post('m');
$d = $this->input->post('d');
if(checkdate($m, $d, $y)) {
     return true;
} else {
     return false;
}
but if it fails how can I display the custom error message?


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