You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php include 'include/menu.php';?>
|
|
<script type="text/javascript" src="js/index.js" defer></script>
|
|
</head>
|
|
<body id="corps">
|
|
<?php include 'include/nav.php';?>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th colspan="14">Ticket</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class='table-title'>
|
|
<td>ID</td>
|
|
<td>date</td>
|
|
<td>details</td>
|
|
<td>lieu</td>
|
|
<td>salle</td>
|
|
<td>pos</td>
|
|
<td>materiel</td>
|
|
<td>marque</td>
|
|
<td>model</td>
|
|
<td>nserie</td>
|
|
<td>demandeur</td>
|
|
<td>traitement</td>
|
|
<td>valider</td>
|
|
</tr>
|
|
<?php
|
|
$bdd = new PDO('mysql:host=localhost;dbname=ticket;charset:utf8', 'root', '');
|
|
|
|
$reponse = $bdd->query("SELECT * FROM pannes ORDER BY ID");
|
|
|
|
while ($line = $reponse->fetch()) {
|
|
$class = $line[0];
|
|
include 'include/line.php';
|
|
}
|
|
$reponse->closeCursor();
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|