-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpair.php
40 lines (39 loc) · 890 Bytes
/
pair.php
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
<?php
require 'infoWeb.php';
?>
<!DOCTYPE html>
<html>
<?php require 'require/head.php' ?>
<body>
<?php require 'require/navbar.php' ?>
<div class="container ">
<div class="row ">
<div class="column column-100 titre">
<h3 class="titre">Liste des Pairs :</h3>
</div>
</div>
<br/>
<div class="row content">
<div class="column column-100 ">
<table >
<thead>
<tr>
<th>Nom</th>
<th>Nombre de Sauvegardes </br>en partages</th>
<th>Nombre de Sauvegardes</br> ajoutées</th>
<th>Nombre de disques</th>
<th>Dernière </br>mise a jours</th>
</tr>
</thead>
<tbody>
<?php
$infoWeb = new InfoWeb();
$infoWeb->pairList();
?>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>