我通過下面的代碼上傳了多個圖片(它的工作原理),但我無法將這些圖片的網址插入到我的數據庫中。我嘗試了一些東西,但不能使它工作。我的代碼尚未完成,所以我沒有添加控件(文件類型,文件大小等)。從數組中插入多條記錄到我的數據庫
的index.php
<form action="upload.php" method="post" enctype="multipart/form-data">
<div id="file_container">
<input name="images[]" multiple type="file" id="file[]"/><br/>
<input type="submit">
</div>
</form>
upload.php的
$target = "upload/";
$test = 1;
foreach ($_FILES['images']['name'] as $key => $value) {
$path = $_FILES['images']['name'][$key];
$ext = pathinfo($path, PATHINFO_EXTENSION); // getting the extension
// creating a unique value here
$name = md5($name);
$generate1 = md5(date('Y-m-d H:i:s:u'));
$randomizer = uniqid($name);
$name = $name . $generate1 . $randomizer;
$makeaname = $target . $name . "." . $ext;
if ($test == 1) {
if (move_uploaded_file($_FILES['images']['tmp_name'][$key], $makeaname)) {
echo "<strong>" . $value . "</strong> successful <br />\n";
echo $makeaname; // it echoes image urls, so everything is okay so far.
}
} else {
echo "Failed";
}
我用下面的查詢在foreach循環echo $makeaname;
後,但沒有奏效。我感謝任何幫助或指導。
$upload_image = $sqli->prepare("INSERT INTO images(image_value, type, size) VALUES (?,?,?)");
$upload_image->bind_param("sss", $makeaname, $_FILES['images']['type'], $_FILES['images']['size']);
$upload_image->execute();
$ makeaname是一個字符串的文件名,而不是實際的文件。首先,您需要將「sss」的bind_param調用修改爲「bss」,然後您需要提供實際的文件。請參閱https://blogs.oracle.com/oswald/entry/php_s_mysqli_extension_storing – hofan41
您是否檢查過查詢中的錯誤消息?也就是說'$ _FILES ['images'] ['type']'在你的綁定語句中正確嗎?'換句話說,它應該是'$ _FILES ['images'] ['type'] [$ key]'? – Gohn67
@ Gohn67,謝謝。現在可以完美地添加大小和類型列。我還注意到,我忘記在我的文件頂部包含connect.php文件,這是我在2015年曾經做過的最愚蠢的事情。我對此表示祝賀。 – salep