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
|
<?php
$sql="SELECT titre_info,
descri_info,
img_news
FROM information
WHERE id_langue='fr' AND parent='map'";
$req=mysql_query($sql);
$rep=mysql_fetch_assoc($req);
{
?>
<tr><td class="adresse-hotel" width="100%">
<?php
echo $rep['titre_info'].'<br><br>';
?>
</td></tr>
<tr><td width="100%">
<?php
echo '<img src="../../images/map/'.$rep['img_news'].'" width="280">';
?></td></tr>
<tr><td class="bleu-text" width="100%">
<?php
echo $rep['descri_info'].'<br><br>';
}
?> |
Partager