Guten Tag liebe Community,
ich mache zurzeit ein Privaten und ein einfaches Control Panel und habe nun problem beim Speichern nur verstehe nicht warum er das nicht Speichert.
Es steht zwar Erfolgreich gespeichert, nur er hat sich nicht gespeichert.
CODE:
PHP
<?php
session_start();
error_reporting(0);
include('assets/server.php');
if(!isset($_SESSION['username']))
{
header("Location: admin-cp.php");
}
?>
<html lang="en">
<?php
if(isset($_SESSION['username']))
{
$username = $_SESSION['username'];
if(isset($_GET['best'])){
$Geld=$_GET['Geld'];
$Level=$_GET['Level'];
$Fraktion=$_GET['Fraktion'];
$Rang=$_GET['Rang'];
$Bank=$_GET['Bank'];
$Gehalt=$_GET['Gehalt'];
$Perso=$_GET['Perso'];
$Lizenz=$_GET['Lizenz'];
$Skin=$_GET['Skin'];
$Activated=$_GET['Activated'];
$idplayeredit=$_GET['idplayeredit'];
}else header("Location: editplayer2.php?id='$idplayeredit'");
}
else header("Location: admin-cp.php");
?>
<head>
<meta charset="utf-8">
<title>Spieler bearbeiten</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
</head>
<body>
<header>
<div class="jumbotron">
<div class="container">
<h1>Hallo, <?php echo $_SESSION['username']; ?>
<a href="logout.php"><span style="font-size:24px">Abmelden</span></a></h1> Sie sind unterwegs in <font color="red">Spieler Bearbeiten</font>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="well">
<?php
mysql_select_db("samprp");
if($query = mysql_query("UPDATE users SET Level='$Level',Geld='$Geld',Fraktion='$Fraktion',Rang='$Rang',Bank='$Bank',Gehalt='$Gehalt',Skin='$Skin',Activated='$Activated' WHERE id='$idplayeredit'"))
{
$query = mysql_query("UPDATE users SET Level='$Level',Geld='$Geld',Fraktion='$Fraktion',Rang='$Rang',Bank='$Bank',Gehalt='$Gehalt',Skin='$Skin',Activated='$Activated' WHERE id='$idplayeredit'");
echo "Erfolgreich gespeichert!";
}else echo "Fehler beim Speichern";
?>
<meta http-equiv="refresh" content="3; URL=editplayer.php">
</div>
</div>
</div>
</body>
</html>
Alles anzeigen
Die Logs finde ich nicht.
LG,
Skoam