0

当文本框为空时,我在 UPDATE 中设置空值有问题。这是我的价值:

$kod = $_POST['Kod'];
$kod = !empty($kod) ? "'$kod'" : "NULL";

和查询:

$query = "UPDATE Sprzety SET Kod = $kod, Wlasciciel = '$wlasciciel', Konfiguracja = '$konfiguracja' WHERE SprzetID = '$id'";

这里有什么问题?

4

1 回答 1

3

你应该使用mysqli_orPDO函数。下面是一个mysqli_程序解决方案:

$kod = !empty($_POST['Kod']) ? $_POST['Kod'] : null;

//$link refers to your mysqli_ connection
if ($stmt = mysqli_prepare($link, 
    "UPDATE UPDATE Sprzety 
     SET Kod = ?, Wlasciciel = ?, Konfiguracja = ?
     WHERE SprzetID = ?")) {

/* bind parameters for markers */
mysqli_stmt_bind_param($stmt, "sssi", $kod, $wlasciciel, $konfiguracja, $id);

/* execute query */
mysqli_stmt_execute($stmt);
于 2012-10-12T17:45:18.213 回答