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
| <?php
$row=array('mez'=>1,'mezsal'=>1,'mezcl'=>1,'mezch'=>1,'mezwci'=>1,'mezwcsdb'=>0,'mezsdd'=>0,'mezsdb'=>2);
$description=array();
($row['mez'] == '0') ? $description[] = 'Mezzanine fermée' :
$description[] = 'Mezzanine ouverte';
($row['mezsal'] == '0') ? null :
$description[] = 'Salon';
($row['mezcl'] == '0') ? null :
$description[] = 'Coin Lecture';
($row['mezch'] == '1') ? $description[] = $row['mezch'].' Chambre' :
($row['mezch'] > 1) ?
$description[] = $row['mezch'].' Chambres' :
null;
($row['mezwci'] == '1') ? $description[] = $row['mezwci'].' WC indépendant' :
($row['mezwci'] > 1) ?
$description[] = $row['mezwci'].' WC indépendants' :
null;
($row['mezwcsdb'] == '1') ? $description[] = $row['mezwcsdb'].' WC dans la salle de douche ou de bain' :
($row['mezwcsdb'] > 1) ?
$description[] = $row['mezwcsdb'].' WC dans la salle de douche ou de bain' :
null;
($row['mezsdd'] == '1') ? $description[] = $row['mezsdd'].' Salle de douche' :
($row['mezsdd'] > 1) ?
$description[] = $row['mezsdd'].' Salles de douche' :
null;
($row['mezsdb'] == '1') ? $description[] = $row['mezsdb'].' Salle de bain' :
($row['mezsdb'] > 1) ?
$description[] = $row['mezsdb'].' Salles de bain' :
null;
echo implode(', ',$description); |
Partager