Hi, I'm trying to implement the Last Updated On script on my index.html page. Here are the instructions from Uber Affiliate: I replaced [] with <>, yet nothing comes up when I test the page.
<?php $yesterday = date('m/d/Y', mktime(0, 0, 0, date("m") , date("d") - 1, date("Y"))); ?> Last Updated On : <?php echo $yesterday ?> PHP: This absolutely does work! You should get "Last Updated On : 11/04/2007" (for today). Check your syntax. Make sure you don't have any weird control characters. Make sure you upload in ascii.
One more thing.... If you don't want to back-date the thing to "yesterday" you can simply do: Last Updated On : <?php echo date('m/d/Y') ?> PHP: