15 lines
332 B
PHP
15 lines
332 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
require_once "lehrerclass.php";
|
|
$l = new Lehrer("Michael", " Staudt", 13);
|
|
$l->ausgeben();
|
|
?>
|
|
</body>
|
|
</html>
|