仅在提交后上传文件

时间:2017-12-12 10:14:04

标签: php jquery dropzone.js

我正在尝试使用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>

1 个答案:

答案 0 :(得分:0)

添加名称属性以提交输入    <input type="submit" value="Submit" name="button" class="btn btn-success form-control">

然后在PHP中:

if(isset($_POST['button'])){ ...some code... }