22-01-2007, 06:19 PM
Deuxieme probleme
J'ai fait séparé pour simplifier la chose..
En faite le deuxieme est sur le design... Quand on est pas connecté, no soucis...
par contre une fois connecté y a un soucis techniques
http://grandeguerre.keogratuit.com/index.php
Voila quand vous êtes pas connecté, mais quand vous êtes connectés... Hormis sur la page jouer... voila ce qui se passe
Page jouer : http://www.bulma-animation.org/u/p/7/sx0...51vcms.jpg
Autre que jouer : http://www.bulma-animation.org/u/p/7/1s0...uz5ehn.jpg
Et voila le script qui gére l'apparation des divers liens
J'ai fait séparé pour simplifier la chose..
En faite le deuxieme est sur le design... Quand on est pas connecté, no soucis...
par contre une fois connecté y a un soucis techniques
http://grandeguerre.keogratuit.com/index.php
Voila quand vous êtes pas connecté, mais quand vous êtes connectés... Hormis sur la page jouer... voila ce qui se passe
Page jouer : http://www.bulma-animation.org/u/p/7/sx0...51vcms.jpg
Autre que jouer : http://www.bulma-animation.org/u/p/7/1s0...uz5ehn.jpg
Et voila le script qui gére l'apparation des divers liens
Code PHP :
<?
session_start();
include('reglage.php');
include('bdd.php');
if(empty($_SESSION['connection']))
{
echo'</td></td>
<td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable--><tr>
<td width="197" height="49" valign="top" class="RD"><a href="page.index.php?page=6">Autres sites</a></td></tr><tr>
<td height="66" valign="top" class="RDvide">Partenaires</td></tr><tr>
<td height="58" valign="top" class="RD"><a href="#">votre lien ici</a></td></tr><tr>
<td height="65" valign="top" class="RD"><a href="#">votre lien ici</a></td></tr><tr>
<td height="62" valign="top" class="RD"><a href="#">votre lien ici</a></td></tr><tr>
<td height="65" valign="top" class="RDvide"></td></tr><tr>
<td height="313" valign="top" class="RDimage"><p> </p>
<p> </p>
<p> </p></td>
</tr>';
}
else
{
$sql=mysql_query("SELECT xp,pv,pv_max,moral,moral_max FROM membres WHERE id='$id' ");
$sql=mysql_fetch_array($sql);
$grade_joueur =grade($id);
echo '<td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable--><tr>
<td width="197" height="49" valign="top" class="RD"><a href="page.index.php?page=6">Autres sites</a></td></tr><tr>
<td height="66" valign="top" class="RDvide">Caractéristiques</td></tr><tr>
<td height="58" valign="top" class="RD"><font color=white>Vous avez <i>'.$sql['pv'].' PV/'.$sql['pv_max'].' PV</i></font></td></tr><tr>
<td height="65" valign="top" class="RD"><font color=white>Votre moral est de <i>'.$sql['moral'].'/'.$sql['moral_max'].'</td></tr><tr>
<td height="62" valign="top" class="RD"><font color=white>Vous avez <i>'.$sql['xp'].'</i> Xp\'s</td></tr><tr>
<td height="62" valign="top" class="RD"><font color=white>Grade <i>'.$grade_joueur.'</i></td></tr><tr>
<td height="62" valign="top" class="RD"><font color=white><a href="messagerie.php?az=2">Messagerie</a></td></tr><tr>
<td height="62" valign="top" class="RD"><font color=white><a href="moncamp.php">Mon camp</a></td></tr><tr>
<td height="65" valign="top" class="RDvide"></td></tr><tr>
<td height="313" valign="top" class="RDimage"><p> </p>
<p> </p>
<p> </p></td>
</tr>';
}
echo '
<tr>
<td height="24" valign="top"><img src="images/basRD.jpg" alt="" width="197" height="24"></td>
</tr>
</table></td>
</tr>
<tr>
<td height="1"></td>
<td width="253"></td>
<td width="253"></td>
<td></td>
</tr>
</table>
</body>
</html>';
?>