前のコメンテーターが言ったようにあなたがデモンストレーションしない限り、私はあなたにコードを与えません。ただし、概要を説明しますので、ご自身で作業してください。
update.php
Check if your is logged in. if TRUE, continue. get the new wage from the form $new_wage = $_POST['new_wage']; Be sure to validate and clean the $new_wage variable. Next stage assumes your using PDO $params = array($new_wage, $logged_in_user_id); $update = "UPDATE user_registration SET wage=? WHERE user_id=?"; $pdo->prepare($update); $pdo->execute($params);