Are there any way to prepopulate a form field of
<INPUT TYPE="FILE" NAME="userfile" ...>
I already know the filename to upload and want to find a way to prepopulate the input field before letting user choose a file using "browse" button.
I tried this but doesn't work.
<INPUT TYPE="FILE" NAME="userfile" VALUE=<? echo $myfilename ?>>
Many thanks in advance