Learning PHP and MySQL
Saturday, August 19, 2006
Example 11-19 Creating a timestamp from the components of a date
<?php
echo("Validating: 5/31/2005<br>");
if (checkdate(5,31,2005)) {
echo('Date accepted: ');
$new_date=mktime(18,05,35,5,31,2005);
echo date("r",$new_date);
}
else {
echo ('Invalid date.');
}
echo("<br>");
?>
This code produces Figure 11-16 when run.
Posted by krautgrrl on 08/19 at 08:25 AM
Chapter 11 Code • (20) Comments • (1) Trackbacks • Permalink
Chapter 11 Code • (20) Comments • (1) Trackbacks • Permalink
Statistics
This page has been viewed 407310 times
Page rendered in 2.5789 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:57 am
The most visitors ever was 1103 on 11/20/2007 12:50 pm
