爲什麼下面的代碼不向數據庫表中插入任何內容?數據庫插入不起作用
require_once"connection.php";
$target_Path='img/displays/';
$caption=$_POST['caption'];
$albums=$_POST['albums'];
$target_Path = $target_Path.basename($_FILES['photo']['name']);
move_uploaded_file($_FILES['photo']['tmp_name'], $target_Path);
$withoutExt = preg_replace("/\\.[^.\\s]{3,4}$/", "", $target_Path);
mysqli_query($connection,"INSERT INTO `ett`.`gallery` (`id` ,`album`,`name`,`path`)VALUES (`NULL`,`".$albums."`,`".$caption."`,`".$withoutExt."`)");
下面的代碼工作正常,但由於某些原因上述查詢不起作用。問題是什麼?
mysqli_query($connection,"INSERT INTO `ett`.`gallery` (`id`, `album`, `name`, `path`) VALUES (NULL, '1', 'test', 'test')");
用來看看到你的HTTP服務器錯誤日誌文件,_read_完全問題,而不必_guess_什麼。 – arkascha
迴應查詢,並嘗試寫入直接數據庫,以便您可以確認查詢是否正確 – Deep
爲什麼id始終爲空? –