Bonjour,
voici mon problème, dont je sais pas trop si je dois le poster dans cette catégorie.
Voilà, j'ai un menu côté gauche avec login et mot de pass. Lorsque les membres se connectent : leur pseudo et le nombre de points apparait seulement il ne s'écrit pas sur le menu mais entre pourquoi ?
Je vous mets ce que cela me fait pour que vous puissiez voir et m'aidez, merci.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 <td height="506" width="9"></td> <td valign="top" width="170"> <table width="100%" border="0" cellpadding="0" cellspacing="0" height="358"> <!--DWLayoutTable--> <tr> <td width="170" height="24" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" height="1"> <!--DWLayoutTable--> <tr> <td width="170" height="24" background="petit_1.png"> <font face="Tribal Two"> </font></td> </tr> </table></td> </tr> <tr> <td height="80" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0" background="petit_2.png" height="119" style="border-collapse: collapse" bordercolor="#111111"> <!-- debut boite --> <?php if($pseudoem == NULL) { ?> <form method="POST" action="login.php"> <tr> <td align="left" class="tinytext" height="37"> <p align="left"> <span class="Style1"> <font color="#000000"> Pseudo:</font></span> <center><input type="text" name="loginq" value size="20" style="border-style: groove; border-width: 1"></center> </td> </tr> <tr> <td align="left" class="tinytext" height="37"> <p align="left"><span class="Style1"> <font color="#000000"> Password :</font></span> <center><input type="password" name="passeq" value size="20" style="border-style: groove; border-width: 1"></center> </td> </tr> <tr> <td align="right" height="28"> <div align="center"><br> <input type="submit" name="Submit" value="Connection"> </div> </form> <?php } else { ?> <div align="center"> <b><? echo $pseudoem; ?></b><br> <b><?php if ($vip_etat_a >='500') { echo '<img src= "images/vip_saphir.gif" width="45" height="53">'; } else if ($vip_etat_a >='100') { echo '<img src= "images/vip_emeraude.gif" width="45" height="53">'; } else if ($vip_etat_a >='60') { echo '<img src= "images/vip_or.gif" width="45" height="53">'; } else if ($vip_etat_a >='45') { echo '<img src= "images/vip_argent.gif" width="45" height="53">'; } else if ($vip_etat_a >='20') { echo '<img src= "images/vip_bronze.gif" width="45" height="53">'; } ?></b><br> <b>Points : </b> <?php echo $totalP; ?><br> <b>Gothipass: </b><?php echo $totalB; ?><br> <b><?php echo $nb_jours; ?><?php if ($nb_jours =='1') { echo 'er Jour'; } else { echo 'ème jour'; } ?></b><br> <a href="deconection.php"><b>Déconnection</b></a> <?php } ?> </td> </tr> </table></td> </tr> <tr> <td height="15" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0" height="13"> <!-- fin boite --> <tr> <td width="170" height="13" background="petit_3.png"></td> </tr> </table></td> </tr> <tr> <td height="45" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0" height="48"> <!--DWLayoutTable-->
Donc je voudrai qu'il n'y ai pas cette espace gris foncé mais que cela écrive sur le menu en gris clair, comment faire svp ?
Partager