diff --git a/server.php b/server.php
index 724f157..b2a0e08 100644
--- a/server.php
+++ b/server.php
@@ -23,7 +23,50 @@
-
(Coming soon)
+
+
+\n";
+
+while (($line = fgetcsv($f)) !== false) {
+ echo "
";
+ if ($hosts == "failed" ) {
+ if ($line[2] == "FAILED") {
+ foreach ($line as $cell) {
+ if ($cell == "FAILED") {
+ echo '| ' . htmlspecialchars($cell) . ' | ';
+ }
+ else {
+ echo "" .htmlspecialchars($cell) . " | ";
+ }
+ }
+ }
+ }
+ elseif ($hosts == "all") {
+ foreach ($line as $cell) {
+ if ($cell == "FAILED") {
+ echo '' . htmlspecialchars($cell) . ' | ';
+ }
+ elseif ($cell=="GOOD") {
+ echo '' . htmlspecialchars($cell) . " | ";
+ }
+ else {
+ echo "" .htmlspecialchars($cell) . " | ";
+ }
+ }
+ }
+ echo "
\n";
+}
+echo "\n
\n";
+fclose($f);
+?>
+
+