I'm working on an uploadform that has both 'no refreshing page but ajax' and 'upload on selecting a file without submit button'. Both parts work on their own, but not if I combine them.
1) The ajax upload part, as based on http://ramui.com/articles/ajax-file-upload-using-iframe.html
This is the html form :
<div id="feedback"></div>
<iframe name="upload_iframe" src="" size="0" width="0" border="0" ></iframe>
<form method="post" enctype="multipart/form-data" action="/handler.php" target = "upload_iframe" id="fotoupload" >
<input name="file" size="20" type="file" >
<input type="submit" name="submit" value="Upload" >
</form>
This is handler.php, wich works well
function upload_file($path) {
if ($_FILES["file"]["name"]) {
// process image here
$message='<div style="margin:5px; color:green;">File has been successfully uploaded.</div>';
return $message;
}
$response=upload_file('/uploads/');
echo '<script>parent.document.getElementById("feedback").innerHTML="'.addslashes($response).'";</script>';
2) This is a form that submits to itself when a file is selected, wich also works for me
<form method="post" enctype="multipart/form-data" action="/index.php?action=upload"
name="uploadform">
<input name="file" size="20" type="file" onChange="document.forms['uploadform'].submit();" >
</form>
But when I combine both, it doesnt work :
<div id="feedback"></div>
<iframe name="upload_iframe" src="" size="0" width="0" border="0" ></iframe>
<form method="post" enctype="multipart/form-data" action="/handler.php" target = "upload_iframe" name="uploadform" >
<input name="file" size="20" type="file" onChange="document.forms['uploadform'].submit();" >
</form>
So, is this combination somehow possible ? Do I perhaps need to add something more in the onChange part to make sure the form is submitted to the iframe ? Or how can I make it work ?