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
|
function ficheannonce($titre,$cp,$photo,$description,$tel,$genre,$prix) //Control mon formulaire
{
?>
<div name="fiche_fiche" id="fiche_fiche">
<!--Titre-->
<div name="fiche_haut" id="fiche_haut">
<div name="fiche_titre" id="fiche_titre"> <?echo $titre;?></div>
<div name="fiche_genre" id="fiche_genre"><?echo $genre;?> </div>
</div>
<!--LIGNE PHOTO ET DESCRIPTION-->
<!--gauche-->
<div>
<div name="fiche_gauche" id="fiche_gauche">
<!--photo-->
<div name="fiche_photo" id="fiche_photo" onMouseOver="document.getElementById('g_photo').style.visibility='visible';"
onMouseOut="document.getElementById('g_photo').style.visibility='hidden'";><?if (isset($photo)){echo '<img src="Photos/'.$photo.'"width="200px" >';}
else {echo '<img src="images/nophoto.gif" width="200px">';}
?>
</div>
<!--prix-->
<div name="fiche_prix" id="fiche_prix">
<? if (isset($prix)){?><p style="font-weight : bold;">Prix : <?echo $prix;?> </p>
<? }
else{?><p style="font-weight : bold;">Faire une offre</p>
<?}?>
</div>
<!--options-->
<div name="fiche_option" id="fiche_option">
Envoyer à un ami<br/>
Sauvegarder
</div>
</div>
<!--droite-->
<div name="fiche_droite" id="fiche_droite">
<!--Description-->
<div name="fiche_description" id="fiche_description">
<p><b>Code postal : </b><?echo $cp;?></p>
<p><b>Description : </b><?echo $description;?></p>
</div>
<!--Contact-->
<div name="fiche_contact" id="fiche_contact">
<p style="margin-left:30px;" >
<? if ((isset($tel))&&($tel<>"0")) {?>
<p style="width:200px;height:18px;margin-left: auto;margin-right:auto;margin-bottom:5px;background-color:#ffffff;text-align:center;pading-top;2px;border-width: 1px; border-style: solid; border-color: #ba55d3;font-weight: bold;">Contactez le vendeur</p>
<?}?>
<b>Envoyez un Email au vendeur</b><br/>
<? if ((isset($tel))&&($tel<>"0")) {?>
<b>Par télephone au : </b><?echo $tel;}?></p>
</div>
</div>
<?if (isset($photo)){?>
<div name="g_photo" id="g_photo" style="visibility:hidden;"><img src="Photos/<?echo $photo;?>"><div>
<?}?>
</div>
</div>
<?
}
?> |
Partager