I have a date that needs to stay static for one week at a time. Like: "offer ends 5/19/04". Anyone know code that will make that auto change every week to the following week. 5/26/04, 6/2/04 etc.
Thanks in advance.
Thanks in advance.
<?php
echo '© 2001-';
echo date('Y');
echo ' Leonard Whistler';
echo '<br>email: [email][email protected][/email]';
?>
Comment