我形成编辑数据库中的表。但是,用户可能不会选择图像,因此如果他们不选择,我不想更新该字段。我已经尝试了几种方法来做到这一点,但都没有奏效。有没有简单的方法?谢谢。
if ($_POST["image"]!=='') {
$image= "image=%s";
$imageValue = "GetSQLValueString(".$_POST['image'].", 'text'),";
};
$insertSQL = sprintf("UPDATE taxi SET name=%s, taxi_link=%s, ". $image." WHERE id=%s",
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['link'], "text"),
$imageValue,
GetSQLValueString($_POST['id'], "int"));