这是我的upload.php代码,我想将目录上传到目录并保存到mysql数据库的路径。
图像已成功上传到目录,但其条目未插入数据库。
<?php
require("connect.php");
if (isset($_FILES["userfile"]) && !empty($_FILES["userfile"])) {
$image = $_FILES['userfile']['tmp_name'];
$imageName = $_FILES['userfile']['name'];
$about = $_POST['about'];
$title = $_POST['title'];
$place = $_POST['place'];
$date = $_POST['date'];
$time = $_POST['time'];
$link = $_POST['link'];
$details = $_POST['details'];
$con = $_POST['con'];
$email = $_POST['email'];
$number = $_POST['number'];
$len = count($image);
$path = "admin/news/";
for ($i = 0; $i < $len; $i++) {
if (isset($imageName[$i]) && $imageName[$i] !== NULL) {
if(move_uploaded_file($image[$i], $path.$imageName[$i])) {
mysqli_query($con,"insert into tblnews (newsid, about, date_of_event, time, link, event_place, title, details, image, date, contactperson, email, number) values('','$about','$date','$time','$link','$place','$title','$details','$imageName[1]',NOW(),'$con','$email','$number')");
echo"<script>alert('The news had been successfuly uploaded.')
window.location='index.php?pg=homepage'</script>";
}
}
}
}
?>
<form enctype="multipart/form-data" method="post" action="upload.php">
<table>
<tr>
<th>About</th>
<td>
<select name="about">
<option disabled selected>Select</option>
<option value="Taal">Taal Volcano</option>
<option value="Malarayat">Mt. Malarayat Forest Reserve</option>
<option value="vip">Verde Island Passage</option>
</select>
</td>
</tr>
<tr>
<th>Title</th>
<td><input type="text" name="title" required ></input></td>
</tr>
<tr>
<th>Event's Place</th>
<td><input type="text" name="place" required ></input></td>
</tr>
<tr>
<th>Event Date</th>
<td><input type="date" name="date" required></input></td>
</tr>
<tr>
<th>Event Time</th>
<td><input type="time" name="time"></input></td>
</tr>
<tr>
<th>Image</th>
<td><input name="userfile[]" type="file" multiple='multiple' />
</td>
</tr>
<tr>
<th>Link on Facebook</th>
<td><input type="text" name="link"></input></td>
<td><span>Go to the facebook page of the event and copy the url and paste it in the textbox.</span></td>
</tr>
<tr>
<th>Details</th>
<td><textarea name="details" style="height:250px;" ></textarea></td>
</tr>
<tr>
<th>Contact Person</th>
<td><input type="text" name="con" required ></input></td>
</tr>
<tr>
<th>Email</th>
<td><input type="email" name="email" required ></input></td>
</tr>
<tr>
<th>Number</th>
<td><input type="text" name="number" ></input></td>
</tr>
<tr>
<th></th>
<td><input type="submit" name="add_news" value="Upload"></input></td>
</tr>
</table>
</form>
答案 0 :(得分:0)
尝试使用prepared statement,而不是直接在查询中插入variable
。
正如@ajaykumartak指出,newsid可能是自动增加键而在插入时不需要设置。
修改代码:
if(move_uploaded_file($image[$i], $path.$imageName[$i])) {
$stmt = mysqli_stmt_init($con);
$query = <<<END
insert into tblnews (
about,
date_of_event,
time,
link,
event_place,
title,
details,
image,
date,
contactperson,
email,
number
)
values(?,?,?,?,?,?,?,?,?,?,?,?);
END;
mysqli_stmt_prepare($stmt,$query);
mysqli_stmt_bind_param($stmt,'ssssssssssss',
$about, $date, $time, $link,
$place, $tile, $details, $imageName[$i],
$date, $contactperson, $email, $number
);
mysqli_stmt_execute($stmt);
mysqli_stmt_close($stmt);
}
当然,您还应该检查函数调用的返回值,以验证它们是否正确执行,因为我只推断了您的表结构。您需要使用mysqli_error
检查错误:
echo ( mysqli_error($con) );