formulaire pour remplir des ticket de panne
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.
 
 
 
 
 

49 lines
1.4 KiB

<?php
include '../sessions/session_restraintes.php';
?>
<!DOCTYPE html>
<html>
<head>
<?php include 'include/menu.html';?>
<script type="text/javascript" src="js/edit.js" defer></script>
</head>
<body id="corps">
<?php include 'include/nav.php';?>
<table class="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>