D. Liste des maisons en location
Cette page considéré comme étant de
sortie notre site web nous permettra de visualiser toutes les maisons
disponible pour les locataires.
48
La liste de ces instructions suivant nous a permis de
réaliser la page web précédente
<html>
<head><title><h2>MAISON A LOUER
</h2></title> <link rel="stylesheet"
type="text/css"href=../styles/coin.css></head>
<body>
<table height="700" width="1300" bgcolor="gray"
cellspacing="0" cellpadding="0"
border="0">
<tr height="100" width="1300" bgcolor="#006600"><td
colspan="3">
<table height="230" width="1300" cellspacing="0"
cellpadding="0" border="0" background="../photo/MAISON.jpg">
<tr><td></td></tr>
</table> <table align="center" height="40"
width="400">
<tr><td><form method="POST" action="">
<input type="text" Name=""> <input type="submit"
Value="Rechercher"></form></td></tr></table>
</td></tr>
<tr height="20" width="300" bgcolor="yellow"><td
colspan="3">
<table height="15" align="center" width="600" cellspacing="0"
cellpadding="0" border="0" ><tr><td> <a
href="../index.php"> <h4 align="center">HOME</h4></a>
</td></tr><tr><td> <a
href="../pages/locataire.php"> <h4 align="center">LOCATAIRE
</h4></a> </td><td> <a
href="../pages/bailleur.php"> <h4 align="center"> BAILLEUR </h4>
</a></td><td> <a
49
href="../pages/maison.php"> <h4 align="center">
MAISON </h4> </a></td> <td> <a
href="historique.html" rel="nofollow"> <h4 align="center">
HISTORIQUE </h4> </a></td></tr></table>
</td></tr>
</td> </tr>
</table>
<div style="width:1300px;height:1250px;">
<div style="width:450px;float:left;">
s
</div>
<div style="width:850px;float:left;">
<h2>LA LISTE DES MAISONS EN LOCATION</h2>
<?php
$serveurlocal=@mysql_connect("localhost","root","") or
die("Error connexion au serveur");
$db=@mysql_select_db("bdlocation",$serveurlocal) or
die("erreur bd");
$rs=mysql_query("select * from maison",$serveurlocal);
$nbr=mysql_num_rows($rs);
echo'<table border=1px style="width:500px;">';
while($rec=mysql_fetch_array($rs))
{
$p=$rec['images'];
$M=$rec['Montant'];
$nc=$rec['nbr_chambre'];
$Q=$rec['quartier'];
$npc=$rec['numero_pc'];
echo"<tr><td style='width:300px;
height:300px;'><img src='../photo/".$p."'
style='width:500px; height:500px;'
></td></tr>";
//reception commentaire
echo"<tr><td style='width:300px;
height:200px;'>Prix: $M FRw<br>Nombre des chambres:
$nc<br>Quartier: $Q<br>Numero parcelle:
$npc<br> <br><img src='../photo/".$p."'
style='width:100px; height:100px; float:left;'
><br>Veuillez vous enregistez si vous êtes
interessé.<br> A la page <a
href='../pages/locataire.php'>locataire</a>.<br>N'oubliez pas
le
numero de la
parcelle:$npc<br></td></tr>";
}
echo'</table>';
?> </div> </div>
</body> </html>
50
|