On 15/01/2008, Adam Williams <awilliam@xxxxxxxxxxxxxxxx> wrote: > > I'm having users enter dates in MM-DD-YYYY format. is there a way to > check if what they have entered is invalid (like if they enter 1-15-2008 > instead of 01-15-2008) ? > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > You could use check boxes to make sure you get the right format first time and concatenate the results, or use strlen() to check there are enough characters and/or a regular expression.