Update abuse.php
authorPatrick McGuire <insidenothing@gmail.com>
Thu, 4 Jun 2020 14:46:34 +0000 (10:46 -0400)
committerGitHub <noreply@github.com>
Thu, 4 Jun 2020 14:46:34 +0000 (10:46 -0400)
admin/abuse.php

index fe17924..9847297 100644 (file)
@@ -87,6 +87,10 @@ if (isset($_GET['ip_address'])){
 ?>
 
 <h1>Abuses</h1>
+
+<table><tr>
+
+  <td valign="top">
 <h2>IP Address</h2>
 <div>Watch for duplicates.</div>
 <?PHP
@@ -98,7 +102,7 @@ while($d = mysqli_fetch_array($r)){
   }
 }
 ?>
-
+  </td><td valign="top">
 <h2>VTRID</h2>
 <div>Watch for duplicates.</div>
 <?PHP
@@ -110,7 +114,7 @@ while($d = mysqli_fetch_array($r)){
   }
 }
 ?>
-
+ </td><td valign="top">
 <h2>VTRID</h2>
 <div>Watch for 0</div>
 <?PHP
@@ -120,7 +124,7 @@ while($d = mysqli_fetch_array($r)){
     echo "<li><a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> $d[petition_id]</li>"; 
 }
 ?>
-
+ </td><td valign="top">
 <h2>petition_id</h2>
 <div>Watch for 0</div>
 <?PHP
@@ -130,9 +134,10 @@ while($d = mysqli_fetch_array($r)){
     echo "<li><a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> $d[petition_id]</li>"; 
 }
 ?>
+  </td>
 
 
-
+</tr></table>
 
 
 <?PHP