在我的表单中,我正在尝试上传图片。但是,当我提交表单时,除了图像以外的所有内容都会在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'];