diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-03-18 16:02:34 +0100 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-03-18 16:02:34 +0100 |
commit | 6bf04fb78dddeef3d95a4dfd7de75546055e04b0 (patch) | |
tree | ad7146cd80bc79821e4bab395ba328bd8b980307 /admin.php | |
parent | 3b86297c2ddcd691842efd22426fc301f6927ffa (diff) | |
download | arfnet2-cstims-6bf04fb78dddeef3d95a4dfd7de75546055e04b0.tar.gz arfnet2-cstims-6bf04fb78dddeef3d95a4dfd7de75546055e04b0.zip |
Small fixes
Diffstat (limited to 'admin.php')
-rw-r--r-- | admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ $services = $result->fetch_all(MYSQLI_ASSOC); <tr><th>name</th><th>type</th><th>billing</th></tr> <?php foreach ($services as $service) { - echo "<tr><td>".$service['name']."</td><td>".$service['type']."</td><td>".$service['billing']."€/mo</tr>\n"; + echo "<tr><td>".$service['name']."</td><td>".$service['type']."</td><td>".$service['billing']."</tr>\n"; } ?> </table> |