bootstrap html post picture没有价值

时间:2016-11-07 22:37:11

标签: php jquery html twitter-bootstrap

我正在使用bootstrap,并希望通过post发送使用html表单的图片。 但是当我可以获得其他类型的数据时,我无法获得图片的属性。 我的代码如下:

<form enctype="multipart/form-data" action="insertPublish.php" method="post" name="changer" role="form">
<div class="form-group">
    <label for="activity_name">name</label>
    <input name = "activity_name" type="text" class="form-control" id="activity_name" placeholder="please input the name">
</div>

<div class="form-group">
    <label for="activity_describe">description of the activity</label>
    <textarea name="activity_describe" class="form-control" id="activity_describe" rows="9"></textarea>
</div>

<div class="form-group">
    <label for="inputpicture">please upload picture</label>
    <input accept="image/jpeg" name = "image" type="file" id="inputpicture">
    <p class="help-block">please upload file in jpeg format</p>
</div>
<button type="submit" class=""btn btn-default>submit</button>
</form>

此处为the website的链接。底部的按钮用于上传图片(对不起,网站是中文)。 并重定向链接使用以下代码进行调试,无法看到值图像。

  

的var_dump($ _ POST)

我找到一些相关的link,但我仍然无法解决问题。

我想知道这是enctype="multipart/form-data"还是jquery

的问题

1 个答案:

答案 0 :(得分:0)

$ _POST变量由发布的数据组成,但是文件会添加到$ _FILES变量中。