<?php
echo "Todays date is: " . date( "F jS, Y" , strtotime("now +3 weeks") ) . ", and the set date its on " .date( "F jS, Y" , strtotime("now +3 weeks") );
?>
That will show 3 weeks from now, store strtotime("now +3 weeks") and when todays date is the same as that, re-do the 3 weeks from now thing.