Hallo,
ich bin aktuell dabei eine Tabelle zu erstellen. An sich funktioniert dass ganze auch bis auf dass die Reihenfolge nicht übernommen werden möchte wie Angegeben. Er sortiert die Reihenfolge wie er lustig ist. Hat jemand eine Ahnung wo ich einen Fehler habe ?
PHP
<?php
date_default_timezone_set('Europe/Berlin');
?>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div class="widget-box">
<div class="widget-title">
<span class="icon"><i class="icon-th"></i></span><h5>Logs</h5>
</div>
<div class="widget-content nopadding">
<table class="table table-bordered data-table">
<thead>
<tr>
<th scope="col">Anzahl</th>
<th scope="col">Von</th>
<th scope="col">Zeit</th>
</tr>
</thead>
<tbody>
<?php
$query = $connect->prepare("SELECT * FROM `logs` order by zeit DESC");
$query->execute();
while($result1 = $query->fetch())
{
$name = getNameByID($result1['pID']);
$timestamp = $result1["zeit"];
$query_acc = $connect->prepare("SELECT name FROM `accounts` WHERE `id` = :name");
$query_acc->execute(array('name' => $result1['von']));
$fetch_acc = $query_acc->fetch();
?>
<tr>
<td><?php echo $name; ?></td>
<td><?php echo $result1["aktion"]; ?></td>
<td><?php echo date('d.m.Y H:i.ms', $timestamp); ?></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
Alles anzeigen
Sobald ich den fatch_acc entferne Sortiert er wieder anständig. Danke für eure Hilfe im vorraus.