如何做到由用戶採取特別任命的變化更新PHP MYSQL特定ID數據?
updateData.php
$strUserID = $_POST["sUserID"];
/*** Update ***/
$strSQL = " UPDATE book_appointment SET
Type = '".$strType."'
,Date = '".$strDate."'
,Time = '".$strTime."'
WHERE UserID = '".$strUserID."'
";
不需要在那裏使用userid子句 – Armand
@Armand - True。你是對的。 –