Files
PHP-Course/tasks/oop/person/index.php
T
2024-07-05 13:39:02 +02:00

23 lines
407 B
PHP

<!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 "../classes/person/person.php";
$person = new Person("John Doe", 170, new DateTime("01-01-1970"));
echo $person;
?>
</body>
</html>