Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が持っている場合
$updateSQL = sprintf("UPDATE stuffntory SET `youwho`=%s, stock=stock -1, list=%s WHERE something=%s",
マイナス-1ではなく、テキストボックスで入力した-Quantityにしたい
sprintf()フォーマットを更新して、数量のプレースホルダーを含めます。数量が整数であると仮定します。
sprintf()
sprintf("UPDATE stuffntory SET `youwho`=%s, stock=stock - %d, list=%s WHERE something=%s", ...)