我正在尝试使用dropzonejs来上传多个文件。
我想在我提交表单(发布页面)时上传它们
我该怎么做?
<?PHP
if ($_POST)
print_r($_FILES);
?>
这是我的表格:
<form method='post' action='index.php' enctype='multipart/form-data'>
<input type='text' name='title' value="" class="form-control" />
<textarea name="msgText" class="form-control" ></textarea>
<label class="control-label col-sm-1">Attached File:</label>
<div class="dropzone"></div>
<input type="submit" value="Submit" class="btn btn-success form-control">
</form>
答案 0 :(得分:0)
添加名称属性以提交输入
<input type="submit" value="Submit" name="button" class="btn btn-success form-control">
然后在PHP中:
if(isset($_POST['button'])){
...some code...
}