Ik zal je de code niet geven, tenzij je demonstreert zoals de vorige commentator zei. Ik zal je echter een overzicht geven, zodat je er zelf aan kunt werken.
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);