-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (31 loc) · 879 Bytes
/
index.php
File metadata and controls
33 lines (31 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
// include('includes/data.php');
include_once ('includes/data.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<h1><?php echo greeting($name) ?> today is <?php echo DAY ?></h1>
<a href="contact.php">Me contacter</a>
<h2>Liste des users</h2>
<?php
foreach($users as $user) {
?>
<div>
<h3><?php echo $user['name']; ?></h3>
<p><?php echo $user['prenom']; ?></p>
<p><?php echo $user['ville']; ?></p>
<p><?php echo $user['age']; ?> ans</p>
</div>
<?php
}
?>
<?php include('includes/footer.php') ?>
</body>
</html>