I have a static webpage, nothing changes dynamically. However the client wants a date insert into text within the page. The date will always be the current daet plus one day
You can do that in javascript. http://www.tizag.com/javascriptT/javascriptdate.php
Then you can add for example a span tag in your text, and insert the date with javascript. If you can use jQuery, you can do something like:
html:
Tomorrow:
javascript:
$(function() {
var date = new Date()
$(".tomorrow").html(date.getDate() + 1) // you'll have to search how to format the date
});