[HTML] Pb pour inserer une colonne dans un tableau
J'ai un gros probleme pour afficher du texte ou autre chose dans ma 3eme colonne. Cela marche bien sans le code php mais avec la 3 eme colonne se retrouve sous la deuxieme colonne!!
Help me, je pète un cable sur un pb sans doute facile pour certains.
Voici le code :
Code:
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
|
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="93%" border="0">
<tr>
<td align="left" valign="top" width="9%">
<div align="left"><font size="2" color="#FF0000"><b><font color="#000000"><img src="Images/puce_menu.gif" align="absmiddle" height="9" width="8">
<font size="1">MENU PRINCIPAL</font></font></b></font>
<ul class="menu">
<li> <a href="finance1.php" target="bottomFrame1">Accueil</a></li>
</ul>
</div>
<ul class="menu">
</ul>
</td>
<td align="left" valign="top" width="81%">
<p align="left"><font size="4"><b><font size="1" color="#000099">Derniere
Analyse </font></b></font></p>
<?
if(!isset($_GET['page'])) { $i = '1'; } else { $i = $_GET['page']; }
include('http://....e/news/index.php?page='.$i);
?>
<p align="left"> </p>
</td>
<td width="10%" align="left" valign="top">coucou </td>
</tr>
<tr>
<td align="left" valign="top" width="9%"> </td>
<td class="blok"> </td>
<td width="10%"> </td>
</tr>
<tr>
<td align="left" valign="top" width="9%"> </td>
<td align="left" valign="top" width="81%"> </td>
<td width="10%"> </td>
</tr>
<tr>
<td align="left" valign="top" width="9%"> </td>
<td align="left" valign="top" width="81%"> </td>
<td width="10%"> </td>
</tr>
</table>
</body>
</html> |
Merci de me dire comment faire!! Passer par les tableaux, c'est le meme resultat!