表单提交后不发送图像信息

时间:2018-11-01 17:19:12

标签: php html

在我的表单中,我正在尝试上传图片。但是,当我提交表单时,除了图像以外的所有内容都会在PHP文件中收到。我不知道我的表单或PHP代码是否有问题。

表格:

<form class="" action="Insert_Data.php" method="post">
      <input type="text" name="Title" placeholder="Title"><br><br>          

        <div style="width: 90%; margin: auto;">
          <textarea id="summernote"name="Content"></textarea>
        </div>

      <select style="width: 80%; margin-left: 10%; margin-top: 4%;" name="Type">
        <option value="" disabled selected hidden>Type of Experience</option>
        <option value="Experience">Job Experience</option>
        <option value="Education">Education</option>
      </select><br><br>
      <input type="file" name="Image" id="fileToUpload"><br><br>
      <button class="submitbt" type="submit" name="button">Submit</button>
 </form>

PHP:

$file = $_FILES['Image'];

0 个答案:

没有答案