This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

The PHP Date() Function

Create a Date With mktime()

Created date is 2014-08-12 11:14:54 am

<?php
$d=mktime(11, 14, 54, 8, 12, 2014);
echo "<p>Created date is " . date("Y-m-d h:i:sa", $d) . " </p>";
?>