I want to assign a value to a form field server side. I need to break out the current month, day and year to be included in a form without the user adding input. What is the cleanest way to handle this? Here is a quick and dirty example of the static fields I am using now:
<input type="hidden" name="DATEMONTH" value="03">
<input type="hidden" name="DATEDAY" value="12">
<input type="hidden" name="DATEYEAR" value="2009">
I can use ASP or PHP for this function.
TIA