Bonjour a tous,

J'ai ecrit le code suivant (juste pour faire un test)

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
<TABLE width = "100%" height = "" BORDER>
<TR valign="top"><TD COLSPAN=2>
	<table height="123" width="100%" cellpadding="0" cellspacing="0" border="0">
		<tr valign="top" >
			<td><img src="img/templogo.jpg" width="574" height="123" border="0" alt=""></td>
			<td width="100%" background="img/topbg.jpg">&nbsp;</td>
		</tr>
	</table>
 
	<table height="40" width="100%" cellpadding="0" cellspacing="0" border="0">
		<tr valign="center">
			<td width="100%" background="img/topbar.jpg">&nbsp;</td>
			<?php
			echo '<td width="100%" background="img/topbar.jpg"><a href="view_account.php" >[Account]</a></td>';
			echo '<td width="100%" background="img/topbar.jpg"><a href="logout.php">[Logout]</a></td>';
			?>
		</tr>
	</table>
</TD></TR>
<TR><TD>Qui</TD><TD>Frétille</TD></TR>
</TABLE>
Mais les liens [Account] et [Logout] ne s'affichent pas.

Que puis je faire pour qu'ils s'affichent?

Merci

Billy