Nie dam ci kodu, chyba że zademonstrujesz, jak powiedział poprzedni komentator. Jednak przedstawię ci ogólny zarys, abyś mógł sam nad tym pracować.
aktualizacja.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);