需要帮助: 我使用简单的PHP代码将照片上传到远程数据库。但是..每次,在DB中保存一张照片的两个副本。 谁能告诉我我做错了什么? PHP代码:
<?PHP
$uploadDir = 'image_folder/';
$uploadDir = 'image_folder/';
if(isset($_POST['Submit'])) //info saving in the variables
{
$fileName = $_FILES['Photo']['name'];
$tmpName = $_FILES['Photo']['tmp_name'];
$fileSize = $_FILES['Photo']['size'];
$fileType = $_FILES['Photo']['type'];
$filePath = $uploadDir . $fileName;
$result = move_uploaded_file($tmpName, $filePath); //moving the photo in the destination
if (!$result) {
echo "Error uploading file";
exit;
}
if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
$filePath = addslashes($filePath);
}
echo "".$filePath."";
$query = "INSERT INTO picture (image) VALUES ('$filePath')";
if (mysql_query($query))
{echo "Inserted";}
mysql_query($query) or die('Error loading file!');
}?>
答案 0 :(得分:4)
if (mysql_query($query))
{echo "Inserted";}
mysql_query($query) or die('Error loading file!');
您正在拨打mysql_query($query)
两次
答案 1 :(得分:1)
答案 2 :(得分:1)
您正在使用mysql_query
两次。试试这个:
if (mysql_query($query)) {
echo "Inserted";
} else {
die('Error loading file!');
}
答案 3 :(得分:0)
您正在执行两次mysql_query。将您的if修改为:
if (mysql_query($query)) {
echo "Inserted";
} else {
die('Error loading file!')
}
然后,删除以下行:
mysql_query($query) or die('Error loading file!');
注意:请务必阅读http://in2.php.net/mysql_query中的警告框。不推荐使用mysql_ *函数。