-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
60 lines (46 loc) · 1.1 KB
/
Copy pathtest.php
File metadata and controls
60 lines (46 loc) · 1.1 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
$contact= array(
'Prenom'=>'Abdou Karim',
'Nom'=>'Fall',
'Tel'=>'+221773168640',
'Email'=>'abdoukfall9@gmail.com',
'N° Carte Etudiant'=>'201708DEE',
'Profession'=>'Etudiant',
'Date de naissaance'=>'26 Janvier 1996',
'Identifiant Slack' =>'Abdu Kareem Fall');
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Devoir</title>
<style>
table,tr,td,th{
border: 2px dashed black;
padding : 15px;
border-radius: 15px 15px 15px 15px;
font-size: 35px;
text-decoration-color: white;
}
body{
background-color : deepskyblue;
}
</style>
= </head>
<body>
<center style="padding-top: 8%;">
<table>
<th colspan="4"><a href="photo.jpg"><img src="photo.jpg" title="Cliquez pour agrandir" style="
height: 200px;
width: 170px;
"/></a></th>
<?php foreach ($contact as $key => $value): ?>
<tr>
<td><?php echo $key;?></td>
<td><?php echo $value;?></td>
</tr>
<?php endforeach ?>
</table>
</center>
</body>
</html>