Du hast Echo gab nix aus!
Aber warum _Post ich dachte ich muss es mit get einholen?
Funktioniert auch nicht leider, Wert auch leer!
Aber warum _Post ich dachte ich muss es mit get einholen?
PHP:
<?PHP
$pilot_id = $_SESSION["pilot_id"];
if(isset($_POST['JumpSeat']) && $_POST['JumpSeat'] != 0){
$flughafenid = $_POST['JumpSeat'];
mysql_query("UPDATE `piloten` SET `piloten`.`letzter_standort` = '$flughafenid' WHERE `piloten`.`pilot_id` = '$pilot_id'" ) or die("Fehler beim Update: ".mysql_error());
}
echo "$flughafenid";
?>
Funktioniert auch nicht leider, Wert auch leer!