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
| <table class=haut width=100% border="0" align="right" cellpadding="5">
<td width="1%" height="10%"></td>
<td width="10%" height="10%" >
<img src="images/Barre_grise.jpg" width="100%"> <div align="right">
<!-- Début du code du texte défilant -->
<marquee
Class="Scroller"
behavior="scroll"
direction="left"
width="100%"
height="19"
scrollamount="8"
scrolldelay="0"
onmouseover="this.stop()"
onmouseout="this.start()">
<font size="4" face="Century Gothic, Helvetica, sans-serif">
<font color="#ff8431">
<?php
// Inclus le fichier contenant les fonctions personalisées
include_once 'mesFonctions.php';
//echo '<img src="images/imagefond.jpg" width="100%" >';
// Fonction de connexion à la base de données
connexion_DB('askamon');
$strSQL="SELECT texte FROM news WHERE langue = '".$_SESSION['langage']."'";
//echo $strSQL;
$res=requete_SQL($strSQL);
// Avec cette boucle, on liste uniquement le nom des jeux :
while ($donnees = mysql_fetch_array($res) )
{ echo '<img src="images/puces.png" border=0 >';
echo $donnees['texte'];
}
deconnexion_DB();
?>
</font></font></marquee>
<!-- Fin du code du texte défilant -->
<td><!--<div align="right">!-->
<a href=<?php echo "index.php?page=1&pageParent=0&langue=fr";?> >
FRANCAIS
<!--<img src="images/badiera_francese.jpg" width="30" height="15" border=0 ></a></div></td> !-->
<td><!--<div align="right">!-->
<a href=<?php echo "index.php?page=50&pageParent=0&langue=en";?> >
ANGLAIS
<!--<img src="images/bandieraingpiccola.jpg" alt="" width="30" height="15" border=0 ></a></div></td>!-->
<td><!--<div align="right">!-->
<a href=<?php echo "index.php?page=20&pageParent=0&langue=it";?> >
ITALIANO
<!-- <img src="images/Italia-Bandiera-Grande.jpg" width="30" height="15" border=0></a></div></td>!-->
</div> </td>
</table> |
Partager