This commit is contained in:
2024-06-28 13:39:21 +02:00
parent fac22f76c6
commit 7043d56329
4 changed files with 147 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once "../../../base/meta.php" ?>
<title>Person Test</title>
</head>
<body>
<?php
include_once "../../../base/settings.php";
include_once "../../../base/headers.php";
Headers::html();
include_once "./person.php";
$person = new Person("John Doe", 170, new DateTime("01-01-1970"));
echo $person;
?>
</body>
</html>