25 lines
No EOL
615 B
PHP
25 lines
No EOL
615 B
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Demo</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
$books = [
|
|
"Do Androids Dream of Electric Sheep",
|
|
"The Langoliers",
|
|
"Hail Mary"
|
|
];
|
|
?>
|
|
<h1>Recommended Book</h1>
|
|
<ul>
|
|
<?php foreach($books as $book) :?>
|
|
<li><?php echo $book; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</body>
|
|
</html>
|