Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
//Interpreting number-only date formats for June 6, 2003
print date ('Y-m-d', strtotime('01-06-2003')); //Europe
print '<br>';
print date ('Y-m-d', strtotime('06-01-2003')); //U.S.
print '<br>';
print date ('Y-m-d', strtotime('2003-06-01'));
?>