Hello!
Is there a way to insert a datestamp into a form where the value is whatever the current date is? I have been trying:
$updated=date('M j Y');
<tr>
<td>Date:</td>
<td><input type="text" name="updated" size="10" value="date('M j Y')" ></td>
</tr>
and various other similar attempts at showing the date, but no luck. What am I doing wrong?