-
Notifications
You must be signed in to change notification settings - Fork 0
/
afficheClim.php
19 lines (17 loc) · 1.08 KB
/
afficheClim.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?PHP
include "../Services/entities/Climatiseur.php";
$clim=new Climatiseur(1,'shit','fuck','hey','lol','nice');
$listeClim=$clim->afficherClim();
foreach($listeClim as $row){
?>
<td class="hidden-phone"><?PHP echo $row['ID']; ?></td>
<td class="hidden-phone"><?PHP echo $row['nom']; ?></td>
<td class="center hidden-phone" ><?PHP echo $row['demande']; ?></td>
<td class="center hidden-phone" ><?PHP echo $row['lieu']; ?></td>
<td class="center hidden-phone"><?PHP echo $row['secteur']; ?></td>
<td class="center hidden-phone"><?PHP echo $row['details']; ?></td>
<td><input type="checkbox" name=""></td>
<td> <input type="checkbox" class="list-child" /></td>
<td> <input type="checkbox" class="list-child" /></td>
<td> <input type="checkbox" class="list-child" value="" /></td>
<?php } ?>