Hello Everyone,
I need your help, can you please tell me how to create a text field for file upload with HTML ?
I presently have this code in my form for file upload to the webserver;<input name="userfile" type="file" size="50">
, this allows someone to browse file from their computer to upload a file. How ever this is not what I want.
What I want is a form field that allows me to preset a file that can be uploaded to the server.
So far this is what I have got <input name="userfile" type="file" size="50" value="a.html">
adding value="a.html" to the field. But it's not working.
Can you guys please help me out? thanks in advance.