Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <table class="table table-hover">
- <thead>
- <tr>
- <th>Datenbank-ID</th>
- <th>Name</th>
- <th>Spielerstatus</th>
- <th>Letzter Login</th>
- <th>Aktion</th>
- </tr>
- </thead>
- <tbody>
- <?php
- $query = "SELECT * FROM `ucp_accounts` ORDER BY `id` ASC";
- $check = mysql_query($query);
- while ( $row = mysql_fetch_assoc($check) )
- {
- ?>
- <tr>
- <td><?php echo $row['id']; ?></td>
- <td><?php echo $row['name']; ?></td>
- <td>
- <?php if($row['alevel'] >= 1)
- {
- ?><span class="label label-primary">Mitglied des Teams</span><?php
- }
- else
- {
- ?><span class="label label-default">Normaler Spieler</span><?php
- }
- ?>
- </td>
- <td>
- <?php if($row['loggedin'] == 1)
- {
- ?><span class="label label-success">Online</span><?php
- }
- else
- {
- echo $row['lastlogin'];
- }
- ?>
- </td>
- <td>
- <a data-toggle="modal" href="#myprofil"><span class="glyphicon glyphicon-user" aria-hidden="true"></span></a>
- <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
- <?php if($row['ban'] >= 1)
- {
- ?><i class="fa fa-unlock"></i><?php
- }
- else
- {
- ?><span class="glyphicon glyphicon-lock" aria-hidden="true"></span><?php
- }?>
- <i class="fa fa-gavel"></i>
- </td>
- </tr>
- <?php } ?>
- </tbody>
- </table>
- <div class="modal fade" id="myprofil" role="dialog">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header" style="padding:35px 50px;">
- <button type="button" class="close" data-dismiss="modal">×</button>
- <h4><span class="glyphicon glyphicon-user"></span> Profil von <?php echo $row['name']; ?></h4>
- </div>
- <div class="modal-body" style="padding:40px 50px;">
- </div>
- </div>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement