probleme avec <table>

Répondre
sven
le 27/01/2005 à 18:46
sven
bonjour, j'ai un souci avec <table>, il débute mon tableau au milieu de la page alors que je voudrai qu'il commence en haut, le code est le suivant:


<?php session_start();
include('fonction.php');
sessionexistante();?>

<html>
<body background="site22.JPG">
<table align="center">
<tr>
<td width="60" align="right"><b><u>Position</u></b></td>
<td width="300" align="center"><b><u>Login</u></b></td>
<td width="60" align="right"><b><u>Points</u></b></td>
</tr><tr></tr>


<?php
connexion();
$sql="SELECT login,points FROM classement ORDER BY points DESC";
$req=mysql_query($sql);
$nb=1;
while($data=mysql_fetch_array($req))
{
echo '<tr><td width="60" align="right"><strong>'.$nb.'.</strong></td> <td width="300" align="center"><strong>'.$data['login'].'</strong></td> <td width="60" align="right"><strong>'.$data['points'].'</strong></td></tr>';
$nb++;
}

deconnexion();

?></table></body></html>


si vous me croyez demandez moi l'adresse je vous la donnerai
si quelqu'un voit comment résoudre le problème merci de me l'indiquer

merci pour vos réponses
http://www.bingojeux.kalikoba.com
i M@N
le 27/01/2005 à 18:53
i M@N
Hello !
ton truc c bizarre là avec le </tr><tr></tr> :
<td width="60" align="right"><b><u>Points</u></b></td>
</tr><tr></tr>

Essaye :
<html>
<body background="site22.JPG">
<table align="center">
<tr>
<td width="60" align="right"><b><u>Position</u></b></td>
<td width="300" align="center"><b><u>Login</u></b></td>
<td width="60" align="right"><b><u>Points</u></b></td>
</tr></tr>

<?php
connexion();
$sql="SELECT login,points FROM classement ORDER BY points DESC";
$req=mysql_query($sql);
$nb=1;
while($data=mysql_fetch_array($req))
{
echo '<tr><td width="60" align="right"><strong>'.$nb.'.</strong></td> <td width="300" align="center"><strong>'.$data['login'].'</strong></td> <td width="60" align="right"><strong>'.$data['points'].'</strong></td></tr>';
$nb++;
}

deconnexion();

?></table></body></html>
@+...
One Love, One Heart, One Unity.
i M@N
le 27/01/2005 à 18:55
i M@N
Reuh ...

Erf ... y'a encore un </tr> en trop :
<td width="60" align="right"><b><u>Points</u></b></td>
</tr>
@+...
One Love, One Heart, One Unity.
sven
le 27/01/2005 à 18:56
sven
<td width="60" align="right"><b><u>Points</u></b></td>
</tr>


c'est normal ça, je l'ai fait expres, c'est pour laisser une case vide, et meme sans ça, le tableau débute au milieu de la page
http://www.bingojeux.kalikoba.com
lupucide
le 27/01/2005 à 19:19
lupucide
Essaye d'ajouter <style="margin:0px;"> à <body> et <table> pour voir.
Pour souper avec le Diable mieux vaut avoir une longue cuillère.
lupucide
le 27/01/2005 à 19:20
lupucide
Oups, sans < et > le "style", excusez.
Pour souper avec le Diable mieux vaut avoir une longue cuillère.
i M@N
le 27/01/2005 à 19:24
i M@N
Reuh ...

Bah essaye
<table>
au lieu de
<table align="center">
@+...
One Love, One Heart, One Unity.
sven
le 27/01/2005 à 19:26
sven
ça marche un peu avec style="margin:0px;" mais ça remonte pas jusqu'en haut


pour <table align="center"> c'est pour centrer entre la gauche et la droite, j'ai déjà essayé de l'enlever
http://www.bingojeux.kalikoba.com
Pegasus
le 27/01/2005 à 20:41
Pegasus
Alors essai plutot :

<table align="center" valign="top">
<-- Observe, écoute et retiens -->
sven
le 27/01/2005 à 20:48
sven
non ça n'a rien changé non plus :(
http://www.bingojeux.kalikoba.com
Répondre
LoadingChargement en cours