Hey guys,
Couldn't find it (although I know it is around!). If I want to fetch todays date and play with that variable ie:
Get it before August 8th.
OR
Supplies limited after August 5th.
How would I do that?
Thanks.
http://stmforum.com/2011/02/04/steal...-from-me-free/
Or if you need diffrent display google for "javascript date"
<?php echo date("F jS"); ?>
<?php
$days = 3; // how many days from today?
$days = $days * 86400; // calculating...
echo "Get it before ".date("F jS", time() + $days);
?>