24 lines
484 B
PHP
24 lines
484 B
PHP
<!DOCTYPE HTML>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Dozenten ausgeben</title>
|
|
<?php
|
|
require_once("dozenten.class.php");
|
|
?>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<?php
|
|
require_once("navigation.inc.php");
|
|
?>
|
|
<h1>Dozenten</h1>
|
|
<div class="ausgabe">
|
|
<?php
|
|
$dozent = new dozent();
|
|
$dozent->lesenAlleDaten();
|
|
?>
|
|
</div>
|
|
<p><a class="button" href="dbearbeiten.php">Neuen Dozenten anlegen</a></p>
|
|
</body>
|
|
</html>
|