PHP Upload file with additional information

raredaredevil

New Member
I've got a website where I want to allow a trusted (;)) user to upload a file. In addition I want to allow the user to place a note with this file.So:HTML:\[code\]<form name="uploadform" id="uploadform" action="handleRequest.php" enctype="multipart/form-data" method="post"><input id="note" type="text" value="http://stackoverflow.com/questions/3725686/This File is interesting!"/><legend>Choose file to upload</legend><input id="userfile" label="userfile" name="file" type="file"><input value="http://stackoverflow.com/questions/3725686/Upload" onclick="onClickVerify();" type="button"></form>\[/code\]Note that there is no submit button, but assume that the JS-function onClickVerify() calls the submit method on the form.On the PHP side, I can see that my file is transferred as expected, but I can't get to my "note". The $_POST variable is empty and the $_FILES variable only contains the file information.I've been searching for the answer, but I can't find it. I vaguely recall stumbling across a site that says it can't be done yesterday, but can't seem to find that same information anymore...Any suggestions?
 
Back
Top