Learning PHP and MySQL
Saturday, August 19, 2006
Example 11-18 Validating two dates
<?php
echo("Validating: 4/31/2005<br>");
if (checkdate(4,31,2005)) {
echo('Date accepted.');
}
else {
echo ('Invalid date.');
}
echo("<br>");
echo("Validating: 5/31/2005<br>");
if (checkdate(5,31,2005)) {
echo('Date accepted.');
}
else {
echo ('Invalid date.');
}
?>
As you can tell by our example in Figure 11-15, the 31 April 2005 date was an invalid date, yet the 31 May 2005 was valid.
Posted by krautgrrl on 08/19 at 08:22 AM
Chapter 11 Code • (2) Comments • (0) Trackbacks • Permalink
Chapter 11 Code • (2) Comments • (0) Trackbacks • Permalink
Statistics
This page has been viewed 407309 times
Page rendered in 0.1693 seconds
Total Entries: 224
Total Comments: 16
Total Trackbacks: 307338
Most Recent Entry: 09/27/2006 12:39 pm
Most Recent Comment on: 10/26/2007 10:00 am
Total Members: 2
Total Logged in members: 0
Total guests: 9
Total anonymous users: 0
Most Recent Visitor on: 05/19/2012 05:56 am
The most visitors ever was 1103 on 11/20/2007 12:50 pm
