//----------------------------------------------------------
//-----PRELIMINAIRES
//----------------------------------------------------------
//-----PRELIMINAIRES
@include_once("config.php");
connect();
//-----DEFINITION VARIABLES
$idrub=1;
DJS_recupvar('agence','narbonne');
DJS_recupvar('min','');
DJS_recupvar('max','80000');
DJS_recupvar('prix','');
$inter_tab=array('-80000','80000-150000','150000-300000','300000-');
if($prix!='')
{
foreach($inter_tab as $bornes)
{
$bornes_tab=explode('-',$bornes);
if( ($bornes_tab[0]=='' || $prix>=$bornes_tab[0]) && ($bornes_tab[1]=='' || $prix<=$bornes_tab[1]) )
{
$min=$bornes_tab[0];
$max=$bornes_tab[1];
break 1;
}
}
}
//----------------------------------------------------------
//-----CONTENU
//----------------------------------------------------------
//-----REQUETE
$result=@mysql_query("SELECT * FROM ".Tmandats." WHERE agence='$agence' AND etat='actif' ". ( !empty($min) ? " AND prixeuro>='$min'" : "" ). ( !empty($max) ? " AND prixeuro<='$max'" : "" ) ." ORDER BY prixeuro ASC");
//-----INFOS
//-----Cas 1 : indisponible
if($result===FALSE)
$print='
Ce service est momentanément indisponible. Pour plus d\'information vous pouvez nous contacter directement. |
';
//-----Cas 2 : résultats
else
{
$print='';
while($ligne=mysql_fetch_assoc($result))
{
//--Récup résultats et retraitement
recupresult($result,$ligne);
pasdenom($ref,' inconnue');
pasdenom($geo,'Situation géographique inconnue');
urltransf($descriptif,'','','','');
if($prixeuro!='')
{
$prixfranc=(6.55957*$prixeuro);
$prixeuro=formatnum($prixeuro).' €';
$prixfranc=formatnum(round($prixfranc))." Fr";
}
else
{
$prixeuro='Prix NC';
$prixfranc='Prix NC';
}
//--Image et galerie
$compte=0;
if($handle=@opendir('images/immobilier_mandats/'.$id.'/'))
{
while(($file=readdir($handle))!==FALSE)
{
if($file != '.' && $file != '..')
$compte=$compte+1;
}
closedir($handle);
}
if(file_exists('images/immobilier_mandats/'.$id.'.jpg')===TRUE)
{
$image='
';
if($compte>0)
$image.='';
}
else
{
if($compte>0)
$image='Il n\'y a pas d\'aperçu pour ce bien mais vous pouvez découvrir sa galerie photos en cliquant ici.';
else
$image='Il n\'y a pas d\'aperçu pour ce bien.';
}
if(!empty($info))
$image=''.$info.'
'. ( !empty($image) ? ''.$image.'
' : '' );
//**Affichage**//
$print.='
'.$typebien.'
'.$prixeuro.'
('.$prixfranc.')
Réf. '.$ref.'
|
'.$image.' |
'.$geo.'
'.nl2br($descriptif).'
NOUS CONTACTER
|
';
}
if(empty($print))
$print.='
Nous n\'avons pas référencé de bien dans cette catégorie pour le moment. Pour plus d\'information vous pouvez nous contacter directement. |
';
}
//----------------------------------------------------------
//-----AFFICHAGE
//----------------------------------------------------------
//-----HEADER
@include_once('header.php');
//-----PRINT
echo '
';
//-----FOOTER
@include_once('footer.php');
?>