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
| <div id="listeBiens">
<table width="610" >
<?php while ($listevente=mysql_fetch_array($resultat )){ ?>
<tr>
<td rowspan="5" ><div align="center"><img src="../imagesSite/listevente/<?php echo $listevente['photo']; ?>" /></div></td>
<td ><div align="left">Ref : <?php echo $listevente['ref']; ?> </div></td>
</tr>
<tr>
<td ><div align="left">Ville : <?php echo $listevente['ville']; ?> </div></td>
</tr>
<tr>
<td ><div align="left">Type de biens : <?php echo $listevente['type']; ?> </div></td>
</tr>
<tr>
<td ><div align="left">Prix : <?php echo $listevente['prix']; ?> </div></td>
</tr>
<tr>
<td ><div align="left"><a href="ficheVente.php?ref=<?php echo $listevente['ref']; ?>">Voir</a> </div></td>
</tr>
<?php }?>
</table>
</div> |