This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Tomorrow is 2024-11-25 12:00:00 am
Next Saturday is 2024-11-30 12:00:00 am
In three months it will be 2025-02-24 12:21:46 am
<?php $d=strtotime("tomorrow"); echo "<p>Tomorrow is " . date("Y-m-d h:i:s a", $d) . "<br>"; $d=strtotime("next Saturday"); echo "Next Saturday is " . date("Y-m-d h:i:s a", $d) . "<br>"; $d=strtotime("+3 Months"); echo "In three months it will be " . date("Y-m-d h:i:s a", $d) . "</p>"; ?>