aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/01 WEB Architektur/03 MVC-Beispiel/view/viewbook.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01:00

15 lines
195 B
PHP

<html>
<head></head>
<body>
<?php
echo 'Title:' . $book->title . '<br/>';
echo 'Author:' . $book->author . '<br/>';
echo 'Description:' . $book->description . '<br/>';
?>
</body>
</html>