我正在使用 php mysql 处理简单的产品页面。它有三个字段 product_name , sub_product_name 和 product_image ,我的问题是如何只更新 product_name 并保留 sub_product_name 和 product_image 原样。 如果有人知道如何做到这一点,那就太棒了,非常感谢提前。 :)
我正在使用此代码进行更新。
mysql_connect('localhost','root','');
mysql_select_db('product_db');
error_reporting(0);
$myid = $_GET['id'];
if(isset($_POST['submit']))
{
$errors= array();
$file_name = $_FILES['product_image']['name'];
$file_size = $_FILES['product_image']['size'];
$file_tmp = $_FILES['product_image']['tmp_name'];
$file_type = $_FILES['product_image']['type'];
$file_ext=strtolower(end(explode('.',$_FILES['product_image']['name'])));
$expensions= array("jpeg","jpg","png");
if(in_array($file_ext,$expensions)=== false){
$errors[]="extension not allowed, please choose a JPEG or PNG file.";
}
if($file_size > 2097152) {
$errors[]='File size must be excately 2 MB';
}
if(empty($errors)==true)
{
move_uploaded_file($file_tmp,"../icon/".$file_name);
$product_name=$_POST['product_name'];
$sub_product_name = $_POST['sub_product_name'];
$product_image="icon/" . $_FILES["product_image"]["name"];
$update = "update product_table set product_name = '$product_name', sub_product_name = '$sub_product_name', product_image = '$product_image' where id= '$myid'";
if (mysql_query($update))
{
$msg = "Product update successfully!";
}
else
{
echo "error";
}
}
答案 0 :(得分:0)
您需要做的一件非常简单的事情是,将更新sql查询修改为:
$update = "update product_table set product_name = '$product_name' where id= '$myid'";
始终,仅在要更新的更新查询中包含这些字段。