the easiest way to do this is client side(javascript) the gets the date from the clients own system
i forgot exactly but its something like
<script>
var date = new Date();
var month = date.getMonth();
var year = date.getFullYear();
var day = date.getDate();
monthname = new Array(12)
monthname[0] = "January"
monthname[1] = "Febuary"
//fill in the rest of the months
var datestring = day + monthname[month] + year
document.write(datestring)
</script>
im not quite sure if thatll work but its close to the code u need