Hey,
ich bin an einem UCP am arbeiten aber ich habe einen fehler und zwar wied der Spieler nicht entbannt.
Es wird so aufgelistet:
Das ist der Code:
Code
<?if($playerConnected == 1){?>
<table class="table table-condensed">
<thead>
<tr>
<th colspan="16">Permanente Sperrungen</th>
</tr>
<tr>
<th>IP</th>
<th>Name</th>
<th>Grund</th>
<th>Admin</th>
<th>Zeit</th>
<th>Datum</th>
<th>Uhrzeit</th>
<th> </th>
</tr>
</thead>
<tbody>
<?
$query = "SELECT * FROM `".$MySQLiDB['banrange']."`WHERE Zeit= '-1' ";
if ($result = $mysqli->query($query))
{
while ($row = $result->fetch_assoc())
{
$bwid = $row['IP'];?>
<tr style="cursor:pointer;">
<td><?= $bwid;?></td>
<td><?= $row['Name'];?></td>
<td><?= $row['Grund'];?></td>
<td><?= $row['Admin'];?></td>
<td><?if($row['Zeit']== -1) echo "Permanent";?></td>
<td><?= $row['Datum'];?></td>
<td><?= $row['Uhrzeit'];?></td>
<td><a href="?s=unbanplayer"><i class="icon-remove"></i>Entbannen</a></td>
</tr>
<?}
}?>
</tbody>
</table>
<table class="table table-condensed">
<thead>
<tr>
<th colspan="16">Zeit Sperrungen</th>
</tr>
<tr>
<th>IP</th>
<th>Name</th>
<th>Grund</th>
<th>Admin</th>
<th>Zeit</th>
<th>Datum</th>
<th>Uhrzeit</th>
<th> </th>
</tr>
</thead>
<tbody>
<?
$query = "SELECT * FROM `".$MySQLiDB['banrange']."`WHERE Zeit > '0' ";
if ($result = $mysqli->query($query))
{
while ($row = $result->fetch_assoc())
{
$bwid = $row['IP'];?>
<tr style="cursor:pointer;" onClick="location.href='?s=complaint&id=<?= $bwid;?>'">
<td><?= $bwid;?></td>
<td><?= $row['Name'];?></td>
<td><?= $row['Grund'];?></td>
<td><?= $row['Admin'];?></td>
<td><?if($row['Zeit']> 0) echo "Unbekannt";?></td>
<td><?= $row['Datum'];?></td>
<td><?= $row['Uhrzeit'];?></td>
<td><a href="?s=unbanplayer"><i class="icon-remove"></i>Entbannen</a></td>
</tr>
<?}
}?>
</tbody>
</table>
<?}
?>
Alles anzeigen
Ich möchte jetzt das der Spieler entbannt wird, bei dem man auch entbannen gedrückt hat kann mir da jemand helfen?
Danke im voraus.