Hi,
How do I show a post-date in a php web page?
For example, the following code shows today's date, but how do I make it show the date for 3 days from the current date?
<?php echo date ("l, F d, Y"); ?>
Thanks.
B-truE
try
echo date ("l, F d, Y", strtotime("+3 days"));
drew010,
That did it! Thank you very much 🙂