25 lines
501 B
PHP
25 lines
501 B
PHP
<?php
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ceník našich služeb</title>
|
|
</head>
|
|
<body>
|
|
<?php include "./assets/componets/header.php" ?>
|
|
|
|
<?php
|
|
$students = ["Harry", "Ron", "Hermione"];
|
|
?>
|
|
<ul>
|
|
<?php foreach ($students as $one_student): ?>
|
|
<li><?php echo $one_student ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php include "./assets/componets/footer.php" ?>
|
|
|
|
</body>
|
|
</html>
|