私は以下のコードを持っています、そしてどういうわけかそれを機能させる必要があります。あるフォームを別のフォームに送信することは許可されていないことを知っているので、それを回避する方法があるのではないかと思いました。
<form method="post" action="somepage.php">
<input name="textbox_question" type="text">
<!--and there is a lot more code for this form here -->
<form id="fileupload" action="upload_form/server/php/" method="POST" enctype="multipart/form-data">
<div>
<div class="span7"><strong>
<span class="btn btn-success fileinput-button"> Add files...
<input type="file" name="files[]" multiple>
</span>
</button>
<br></br>
</strong></div>
</div>
<!-- The loading indicator is shown during file processing -->
<div class="fileupload-loading"></div>
<br>
<!-- The table listing the files available for upload/download -->
<table role="presentation" class="table table-striped">
<tbody class="files" data-toggle="modal-gallery" data-target="#modal-gallery">
</tbody>
</table>
</form>
<!--and there is a lot more code for this form here -->
</form>