如何使用 PHP 程式碼將映像上傳到 MySQL 資料庫
將映像上傳到 MySQL 資料庫是開發工作在 Web 應用程式時的常見任務。但是,確保正確配置 PHP 程式碼以有效處理影像資料非常重要。
問題描述
開發人員的 PHP 程式碼遇到問題,這導致旨在將映像插入 MySQL 資料庫。程式碼不會產生任何錯誤訊息,但無法將圖像資料插入資料庫。下面提供了程式碼片段:
$image = file_get_contents ($_FILES['image']['tmp_name']); $image_name = $_FILES['image']['name']; if ($image_query = mysql_query ("insert into product_images values (1,'$image_name',$image )")) { echo $current_id; //echo 'Successfull'; } else { echo mysql_error(); }
解決方案
經分析,程式碼中發現以下問題:
<form action="insert_product.php" method="POST" enctype="multipart/form-data"> <label>File: </label><input type="file" name="image" /> <input type="submit" /> </form>
已修訂代碼
以下程式碼包含必要的修正:
$image = addslashes(file_get_contents($_FILES['image']['tmp_name'])); $image_name = addslashes($_FILES['image']['name']); $sql = "INSERT INTO `product_images` (`id`, `image`, `image_name`) VALUES ('1', '{$image}', '{$image_name}')"; if (!mysql_query($sql)) { // Error handling echo "Something went wrong! :("; }
透過解決這些問題,PHP 程式碼將能夠成功將圖像上傳到MySQL 資料庫。出於性能和可擴展性的原因,還建議考慮將圖像檔案儲存在磁碟上而不是資料庫中。
以上是如何解決 PHP 圖片上傳無法插入 MySQL 資料庫的問題?的詳細內容。更多資訊請關注PHP中文網其他相關文章!