21 lines
332 B
PHP
21 lines
332 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<?php include_once "../../../base/meta.php" ?>
|
|
|
|
<title>Counter DB Tester</title>
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
// PHP
|
|
include_once "../../../base/headers.php";
|
|
Headers::html();
|
|
?>
|
|
This is a dummy test for the database Counter
|
|
|
|
<?php include_once "./counter.php" ?>
|
|
</body>
|
|
|
|
</html>
|