希望有人可以幫助我在這裏,我很新的PHP,所以要記住。我在php文件中遇到了上述錯誤,該文件允許我將新產品添加到數據庫,並且我不確定嘗試上載圖像時出錯的位置。產品名稱,價格,以前的價格和產品詳細信息更新確定,問題似乎是添加圖像。注意:數組到字符串轉換的第16行
<?php
include('../connect.php');
$addid= $_POST['addrow'];
$addproduct= mysql_real_escape_string(htmlentities($_POST['addproduct']));
$addprice= mysql_real_escape_string(htmlentities($_POST['addprice']));
$addprevprice= mysql_real_escape_string(htmlentities($_POST['addprevprice']));
$adddetails= mysql_real_escape_string(htmlentities($_POST['adddetails']));
$addimage1= $_FILES['addimage1'];
$addimage2= $_FILES['addimage2'];
$addimage3= $_FILES['addimage3'];
$query = "INSERT INTO admincamera (product, price, prevprice, details, image1, image2, image3)"."VALUES('$addproduct', '$addprice', '$addprevprice', '$adddetails', '$addimage1', '$addimage2', '$addimage3')";
mysql_query($query) or die(mysql_error());
mysql_close();
?>
*旁註:*停止使用不推薦使用的'mysql_ *'函數。改爲使用[MySQLi](http://php.net/manual/en/book.mysqli.php)或[PDO](http://php.net/manual/en/book.pdo.php)。 – Raptor