diff --git a/tower.php b/tower.php
index 2b13772..4f6ebd5 100644
--- a/tower.php
+++ b/tower.php
@@ -120,6 +120,7 @@ require_db_auth();
};
}
+
Swansea Inbound PPR
@@ -149,7 +150,7 @@ $result = $conn->query($sql);
// Check if there are results
if ($result->num_rows > 0) {
// Start HTML table
- echo '
+ echo '
';
@@ -169,7 +170,7 @@ if ($result->num_rows > 0) {
// Output table rows
while ($row = $result->fetch_assoc()) {
- echo '
';
+ echo '
';
foreach ($row as $key => $value) {
if ($key != 'id' && $key != 'ac_call') {
if ($key == 'ac_reg' && $row['ac_call'] != NULL) {
@@ -199,4 +200,18 @@ $conn->close();
function openPopup() {
window.open("input.html", "PopupWindow", "toolbar=no, location=no, directories=no,status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=600, height=1100");
}
-
\ No newline at end of file
+
+
+
\ No newline at end of file