Whoa! This could be a useful script to anyone wanting to display date on their PHP powered website, here it is:
<HTML>
<HEAD>
<TITLE>Date of today</TITLE>
</HEAD>
<BODY>
<?php
$dateoftoday = mktime(0, 0, 0, date("m"), date("d"), date("y"));
echo "Today is ".date("m/d/y", $dateoftoday);
?>
</BODY>
</HTML>
Related posts:
Script about PHP encrypting code
Best PHP websites and their characteristics
Simple and Easiest WYSIWYG Free PHP5 Templating Engine-RainTPL Review
PHP website application security audit and check list
Most Used PHP Framework-The Popular Top 7 List in year 2011
PHP classes, objects, methods, properties guide for the Complete Idiot
