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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
| <html>
<head>
<title>ScootMania - Nancy</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
function doBlink()
{
var blink = document.all.tags("blink")
for (var i=0; i < blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}
function startBlink()
{
if (document.all)
setInterval("doBlink()",800)
}
window.onload = startBlink;
//-->
</script>
<STYLE TYPE='text/css'>
BODY
{
scrollbar-face-color:#BB3333;
scrollbar-track-color:#999999;
scrollbar-arrow-color:#FFFFFF;
scrollbar-shadow-color:#993333;
scrollbar-highlight-color:#DD3333;
}
.Style3 {
color: #3300CC;
font-size: x-large;
font-family: "Brush Script MT";
}
.titrenews {
color: #999999;
font-family: "Copperplate Gothic Bold";
font-size:30px;
}
.titrepromo {
color: #999999;
font-family: "Copperplate Gothic Bold";
font-size:30px;
}
.remise {
color: #990033;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:20px;
}
a img /* Toutes les images contenues dans un lien */
{
border: none; /* Pas de bordure */
}
.general
{
overflow:auto;
border-color:red;
border-style:solid;
border-width:3px;
}
</STYLE>
</head>
<body bgcolor="#000000">
<table width="60%" align="center" class="general" background="images/Fond.jpg">
<tr>
<td align="right" valign="top" colspan="2"><? $afficletter=donneeNewsletter($numnews);
//Ci-dessous affichage de la date de creation de la newsletter
?>
<font color="#000099" size="2"><? echo $afficletter[3];?></font></td>
</tr>
<tr>
<!-- Affichage du logo scoot mania -->
<td colspan="2" align="center"><a href="http://www.scootmania.fr/accueil.php">
<img src="images/logo.gif"></a>
</td>
</tr>
<tr><br>
<td colspan="2" align="center"> <br><br>
<?
/********************* Affichage dynamique de la gestion de la newsletter *************************************/
$afficnews=donneeNews($numnews);
?>
<font color="#990000" style=" font-size:60px; font:bold" face="Chiller">
<? echo $afficletter[1]?>
</font><br><br>
<table align="center" width="90%">
<?
if ($afficnews[0][0] > 0)
{
// Affichage des news
for ($i=1;$i<=$afficnews[0][0];$i++)
{
if ($i==1)
{
?><tr><td colspan="3" align="center"><span class="Style3">LES NEWS</span><br></td>
</tr><?
}
?>
<tr><td align="center" colspan="3" class="titrenews"><br><br><? echo $afficnews[$i][4]?> <br><br></td></tr>
<tr>
<? if ($afficnews[$i][1] != "")
{
?><td><img align="left" hspace="40" src="<? echo $afficnews[$i][1]?>" width="250"></td>
<td><? echo $afficnews[$i][2]?></td><?
}
else
{
?><td colspan="3" align="center"><? echo $afficnews[$i][2]?></td><?
}?>
</tr><?
}
}
?><tr><td colspan="3"> <br><br></td></tr> <?
//fonction qui recupere les données des promos de la newsletter
$afficpromo=donneePromo($numnews);
//Affichage des Promos si il y en a
if ($afficpromo[0][0] > 0)
{
for ($pr=1;$pr<=$afficpromo[0][0];$pr++)
{
if ($pr==1)
{
?><tr><td colspan="3" align="center"><hr color="#000000"><br>
<span class="Style3">LES PROMOS</span><br><br></td></tr><?
}
?>
<tr>
<tr><td align="center" colspan="3" class="titrepromo"><br><? echo $afficpromo[$pr][7]?><br> </td></tr><?
if ($afficpromo[$pr][1] != "")
{
?><td align="center">
<img align="left" hspace="40" src="<? echo $afficpromo[$pr][1]?>" width="250"></td><td>
<strike><font style="font-size:30px"><? echo $afficpromo[$pr][2]?> </font></strike><br>
<blink>
<font color="#FF0000" style="text-decoration:blink; font-size:60px"><? echo $afficpromo[$pr][3]?>
</font>
</blink><br>
<font class="remise"><? echo $afficpromo[$pr][4]?><br></font><br>
<? echo $afficpromo[$pr][5]?><br><br>
</td><?
}
else
{
?><td colspan="3" align="center">
<strike><font style="font-size:30px"><? echo $afficpromo[$pr][2]?> </font></strike><br>
<blink>
<font color="#FF0000" style="text-decoration:blink; font-size:60px"><? echo $afficpromo[$pr][3]?>
</font>
</blink><br>
<font class="remise"><? echo $afficpromo[$pr][4]?><br></font><br>
<? echo $afficpromo[$pr][5]?><br><br>
</td><?
}?>
</tr>
<?
}
}?>
<tr><td colspan="3"><br><br></td></tr>
</table>
</td>
</tr>
</table>
</body>
</html> |