here is my solution for this...

  if (($timestamp = strtotime($_POST['sdate'])) === -1)
   die ("<H3>The start date is not a valid date format</H3>");
  if (($timestamp = strtotime($_POST['edate'])) === -1)
   die ("<H3>The end date is not a valid date format</H3>");
  if (($timestamp = strtotime($_POST['stime'])) === -1)
       die ("<H3>The start time is not a valid time format</H3>");
  if (($timestamp = strtotime($_POST['etime'])) === -1)
       die ("<H3>The end time is not a valid time format</H3>");

"Erwin Kerk" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Try this (as found on php.net)
>
> $str = 'Not Good';
> if (($timestamp = strtotime($str)) === -1) {
>      echo "The string ($str) is bogus";
> } else {
>      echo "$str == ". date('l dS of F Y h:i:s A',$timestamp);
> }
>
>
> Erwin Kerk
> Web Developer @ BliXem.nl
>
>
>
> Jason Wong wrote:
> > On Tuesday 25 March 2003 00:39, DomIntCom wrote:
> >
> >>can anybody help me out with this?  I have figured out checkdate
finally,
> >>but still have nothing that will help me with time validation.
> >
> >
> > explode() on the time delimiter (probably colon)
> > check that hour is 1-12 (or 0-23)
> > check that minute is 0-59
> > check that second is 0-59
> >
>
>
> --
>   ___            _
> | __|_ ___ __ _(_)_ _
> | _|| '_\ V  V / | ' \ @blixem.nl (work)
> |___|_|  \_/\_/|_|_||_|@scoutingnederland.nl (private)
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to