1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 13:53:35 +02:00

Add Arma 3

This commit is contained in:
xPaw
2014-07-21 18:36:25 +03:00
parent 13b291ab16
commit 266cf6afe7
3 changed files with 10 additions and 5 deletions
+6 -2
View File
@@ -59,7 +59,7 @@
<div class="jumbotron">
<h1>Source Query PHP Class</h1>
<p>This class was created to query game server which use the Source query protocol, this includes all source games, half-life 1 engine games and Call of Duty: Modern Warfare 3</p>
<p>This class was created to query game server which use the Source (Steamworks) query protocol.</p>
<p>
<a class="btn btn-large btn-primary" href="http://xpaw.me">Made by xPaw</a>
@@ -114,7 +114,9 @@
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Players</th>
<th>Player</th>
<th>Frags</th>
<th>Time</th>
</tr>
</thead>
<tbody>
@@ -122,6 +124,8 @@
<?php foreach( $Players as $Player ): ?>
<tr>
<td><?php echo htmlspecialchars( $Player[ 'Name' ] ); ?></td>
<td><?php echo $Player[ 'Frags' ]; ?></td>
<td><?php echo $Player[ 'TimeF' ]; ?></td>
</tr>
<?php endforeach; ?>
<?php else: ?>