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.
55 lines
1.6 KiB
55 lines
1.6 KiB
<?php
|
|
include '../session_restraintes.php';
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<?php include 'include/menu.html'; ?>
|
|
</head>
|
|
|
|
<body>
|
|
<a class="champ" href="../prof/index.php">client</a>
|
|
<?php include 'include/nav.php'; ?>
|
|
<script type="text/javascript" src="js/edit.js" defer></script>
|
|
<table id="table">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="14">Ticket récents non traités</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 DESC");
|
|
|
|
for ($j=0; $j < 3; $j++) {
|
|
$line = $reponse->fetch();
|
|
if ($line['traitement'] == 0) {
|
|
$class = $line[0];
|
|
include 'include/line.php';
|
|
}
|
|
}
|
|
$reponse->closeCursor();
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|