-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex4.php
More file actions
30 lines (24 loc) · 941 Bytes
/
Copy pathex4.php
File metadata and controls
30 lines (24 loc) · 941 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
<?php $title= "Le Titre"; ?>
<?php require('debut_code_html.php');?>
<?php $personnes = [
'mdupond' => ['Prénom' => 'Martin', 'Nom' => 'Dupond', 'Age' => 25, 'Ville' => 'Paris' ],
'jm' => ['Prénom' => 'Jean' , 'Nom' => 'Martin', 'Age' => 20, 'Ville' => 'Villetaneuse'],
'toto' => ['Prénom' => 'Tom' , 'Nom' => 'Tonge' , 'Age' => 18, 'Ville' => 'Epinay' ],
'arn' => ['Prénom' => 'Arnaud', 'Nom' => 'Dupond', 'Age' => 33, 'Ville' => 'Paris' ],
'email' => ['Prénom' => 'Emilie', 'Nom' => 'Ailta' , 'Age' => 46, 'Ville' => 'Villetaneuse'],
'dask' => ['Prénom' => 'Damien', 'Nom' => 'Askier', 'Age' => 7 , 'Ville' => 'Villetaneuse']
]; ?>
<?php function tableau($tabp){
echo "<table>";
foreach ($tabp as $key){
echo "<tr>";
foreach ($key as $p => $u){
echo "<td> $u </td>";
}
}
echo "</tr>";
echo "</table>";
}
tableau($personnes)
?>
<?php require('fin_code_html.php');?>