how do you add a dynamic date to a LP???
saving my LP in .php format
for anyone wondering,
$date = date("m-d-y", strtotime("tomorrow"));
echo $date;
google is my friend :P
this one is even better
http://php.net/manual/en/function.date.php
code:
<?php $date = date("F jS Y", strtotime("tomorrow"));
echo $date; ?>
Nice!
You can also use Javascript to do the same thing if you don't want to run PHP for some reason, although PHP is probably a better choice most of the time.