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.
$result = mysql_query("UPDATE inventory1.asset_details SET status='". $_POST['status']."', To='" . $_POST['location_name']."', notes='". $_POST['notes']."' WHERE asset_tag=" . $_POST['asset_tag']);
これは、配列'asset_tag'にキーとして表示されないことを意味します。$_POST[]HTTPリクエストをチェックして、値が渡されていることを確認する必要があります。
'asset_tag'
$_POST[]