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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| <?php
// On inclut la connexion à la base
include('include/db_inc_pdo.php');
$idnoms = isset($_POST['truc']) ? $_POST['truc'] : '';
$idnoms = $_POST['truc'];
// On écrit notre requête
$sql = "SELECT a.datearrive, a.datedepart, a.nombre, a.prixlocation, a.caution, a.linge, a.litbaby,a.remarques, a.restitution, a.datelettre, a.paragraphesup l.nom, l.noma. l.prenom, l.rue, l.ruea, l.cp, l.ville, l.pays, c.civil, c.civillong
FROM dateloca a, locataires l, civilites c
WHERE a.idnoms = l.idnoms
AND l.idcivil = c.idcivil";
// On prépare la requête
$query = $pdo->prepare($sql);
// On exécute la requête
$query->execute();
// On stocke le résultat dans un tableau associatif
$result = $query->fetchAll(PDO::FETCH_ASSOC);
?>
<link rel="stylesheet" href="menu/dropdown_three.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
<style>
div {
padding-top: 50px;
padding-left: 500px;
}
</style>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
<!--
function doit(){
if (!window.print){
alert("You need NS4.x to use this print button!")
return
}
window.print()
}
//-->
</script>
<a href="javascript:doit()"><img src="print.gif" border=0></a>
</head>
<body>
<table>
<tbody>
<?php
foreach($result as $adloc){
?>
<tr>
<div>
<p><?= $adloc['civil'] ?> <?= $adloc['prenom'] ?> <?= $adloc['nom'] ?> <?= $adloc['noma'] ?>
</p>
<p><?= $adloc['rue'] ?>
</p>
<p><?= $adloc['cp'] ?> <?= $adloc['ville'] ?>
</p>
<p><?= $adloc['pays'] ?>
</p>
</div>
<p>
<?= $adloc['civillong'] ?>
</p>
</tr>
<?php
}
?>
</tbody>
</table>
</body>
</html> |
Partager