Eigene Spalte für Avatar
This commit is contained in:
parent
5afa2c0558
commit
acb96b7500
1 changed files with 3 additions and 1 deletions
|
@ -25,6 +25,7 @@ if($conn->connect_error){
|
|||
<table style="width:50%" class="center">
|
||||
<tr>
|
||||
<th style="padding: 0.5em 0.5em">Eintrag</th>
|
||||
<th style="padding: 0.4em">Avatar</th>
|
||||
<th class="profil">Steam-Profil</th>
|
||||
<th style="padding: 0.4em">Ersteller</th>
|
||||
<th style="padding: 0.4em" class="Zeit">Erstelldatum</th>
|
||||
|
@ -48,7 +49,8 @@ while($row = $result->fetch_assoc()){
|
|||
|
||||
$output = "<tr>
|
||||
<td>".$number."</td>
|
||||
<td class='profil'><img src=$avatarurl><a target ='_blank'href='".$row['url']."'>".$row['url']."</td>
|
||||
<td><img src=$avatarurl></td>
|
||||
<td class='profil'><a target ='_blank'href='".$row['url']."'>".$row['url']."</td>
|
||||
<td>".$row['author']."</td>
|
||||
<td>".$row['addtime']."</td>";
|
||||
if($row['banned'] == 0){
|
||||
|
|
Reference in a new issue