69 -> 70
This commit is contained in:
25
www/cenik.php
Normal file
25
www/cenik.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?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>
|
Reference in New Issue
Block a user