Apres moulte et moulte tests, je n'arrive pas à creer un tableau séparé sur 2 lignes.
Vous l'avez bien compris, "menu();" contient tous les liens du menu qui seront injecté dans la premiere ligne.
Voici le code :
CODE
function debut_tableau_membres()
{
print "<table border=\"1\" cellspacing=\"0\" cellpadding=\"10\" align=\"center\" class=\"tableau\" width=\"475\">
<tr>
<td align=\"center\" valign=\"top\" width=\"100\">";
//On inclut le menu de gauche
menu();
print " </td>
<td valign=\"top\">";
}
function fin_tableau_membres()
{
print " </td>
</tr>
</table>";
}
{
print "<table border=\"1\" cellspacing=\"0\" cellpadding=\"10\" align=\"center\" class=\"tableau\" width=\"475\">
<tr>
<td align=\"center\" valign=\"top\" width=\"100\">";
//On inclut le menu de gauche
menu();
print " </td>
<td valign=\"top\">";
}
function fin_tableau_membres()
{
print " </td>
</tr>
</table>";
}
Merci pour votre aide.