OOP Counter

This commit is contained in:
2024-07-12 12:12:31 +02:00
parent 6bb19ad6b0
commit 49a65d4d1a
28 changed files with 297 additions and 89 deletions
+4 -4
View File
@@ -2,7 +2,7 @@
<html lang="en">
<head>
<?php include_once "../../../base/meta.php" ?>
<?php require_once "../../../base/meta.php" ?>
<title>Counter DB Tester</title>
</head>
@@ -10,13 +10,13 @@
<body>
<?php
// PHP
include_once "../../../base/settings.php";
include_once "../../../base/headers.php";
require_once "../../../base/settings.php";
require_once "../../../base/headers.php";
Headers::html();
?>
This is a dummy test for the database Counter
<?php include_once "./counter/counter.php" ?>
<?php require_once "./counter/counter.php" ?>
</body>
</html>