76 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <head>
 | |
|   <title>MARC KANN NICHTS! Cheaterliste</title>
 | |
|   <link href="style.css?v=<?php date("YmdHis");?>" rel="stylesheet" type="text/css">
 | |
| 
 | |
| <?php
 | |
| $cockDatabase = "dulow";
 | |
| $host = "localhost";
 | |
| $user = "root";
 | |
| $password = "";
 | |
| 
 | |
| $conn = new mysqli($host,$user,$password,$cockDatabase);
 | |
| if ($conn->connect_error){
 | |
|     die("Verbindung fehlgeschlagen: " . $conn->connect_error);
 | |
| }
 | |
| ?>
 | |
| 
 | |
| <table  style="width:50%" class="center">
 | |
|   <tr>
 | |
|     <th style="padding: 0.5em 0.5em">Eintrag</th>
 | |
|     <!-- <th style="padding: 0.5em 0.5em">Avatar</th> -->
 | |
|     <th class="profil">Steam-Profil</th>
 | |
|     <th style="padding: 0.4em">Ersteller</th>
 | |
|     <th style="padding: 0.4em" class="Zeit">Erstelldatum</th>
 | |
|     <th style="padding: 0.4em">VAC-Ban</th>
 | |
|   </tr>
 | |
| 
 | |
| <?php
 | |
| $sql = "SELECT * FROM cheaterliste ORDER BY addtime DESC;";
 | |
| $result = $conn->query($sql);
 | |
| $number = 1;
 | |
| 
 | |
| 
 | |
| while($row = $result->fetch_assoc()){
 | |
|   if($row['deleted'])
 | |
|     continue;
 | |
|   if($number % 2 == 0){
 | |
|     $output = "<tr class='tr_even'>
 | |
|             <td>".$number."</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){
 | |
|           $output .= "<td><img src='kreuz.png' height='20' width='20'</td>
 | |
|           </tr>";
 | |
|     }else{
 | |
|       $output .= "<td><img src='haken.png' height='20' width='20'</td>
 | |
|       </tr>";
 | |
|     }
 | |
|   }else{
 | |
|     $output = "<tr class='tr_odd'>
 | |
|             <td>".$number."</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){
 | |
|           $output .= "<td><img src='kreuz.png' height='20' width='20'</td>
 | |
|           </tr>";
 | |
|     }else{
 | |
|       $output .= "<td><img src='haken.png' height='20' width='20'</td>
 | |
|       </tr>";
 | |
|     }
 | |
|   }
 | |
| echo $output;
 | |
| $number++;
 | |
| }
 | |
| ?>
 | |
| </table><br>
 | |
| 
 | |
| <form action="/insert.php" method="post">
 | |
| Text:<input type="text" name="author"><br>
 | |
| URL:<input type="text" name="url"><br>
 | |
| <input type="submit" value="Hinzufügen">
 | |
| 
 | |
| 
 | |
| 
 | |
| </form>
 |