php-general | 2001092
Date: 09/20/01
- Next message: Ker Ruben Ramos: "Re: [PHP] simple question..."
- Previous message: Emile Bosch: "[PHP] Re: simple question..."
- In reply to: Ker Ruben Ramos: "[PHP] simple question..."
- Next in thread: Ker Ruben Ramos: "Re: [PHP] simple question..."
- Reply: Ker Ruben Ramos: "Re: [PHP] simple question..."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
<Original message>
From: Ker Ruben Ramos <kreaper <email protected>>
Date: Thu, Sep 20, 2001 at 08:56:03PM -0700
Message-ID: <00f801c14251$5aa288b0$bb05aacb <email protected>>
Subject: [PHP] simple question...
> ey guys.. how do i check if the postdata is a valid time format? something
> like '2001-09-15'
> I hate it when they'll be entering garbage in it...
</Original message>
<Reply>
See the example below:
--- PHP Example Code ---
<PRE>
<?php
/* Valid date */
$myDate = "2001-09-12";
/* Invalid date */
//$myDate = "2001-13-20";
/* Another invalid date */
//$myDate = "20o1-10-x9";
if (ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})", $myDate,
$matches)) {
if (checkdate ($matches[2], $matches[3], $matches[1])) {
print ("Valid date!\n\n");
print (date ("r", mktime (0,0,0,$matches[2], $matches[3],
$matches[1])));
} else {
print ("No valid date!");
}
} else {
print ("No valid date!");
}
?>
</PRE>
--- End of PHP Example Code ---
</Reply>
--* R&zE:
-- »»»»»»»»»»»»»»»»»»»»»»»» -- Renze Munnik -- DataLink BV -- -- E: renze <email protected> -- W: +31 23 5326162 -- F: +31 23 5322144 -- M: +31 6 21811143 -- -- Stationsplein 82 -- 2011 LM HAARLEM -- Netherlands -- -- http://www.datalink.nl -- ««««««««««««««««««««««««
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Ker Ruben Ramos: "Re: [PHP] simple question..."
- Previous message: Emile Bosch: "[PHP] Re: simple question..."
- In reply to: Ker Ruben Ramos: "[PHP] simple question..."
- Next in thread: Ker Ruben Ramos: "Re: [PHP] simple question..."
- Reply: Ker Ruben Ramos: "Re: [PHP] simple question..."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

