Bonjour à tous !
Pouvez vous m'aider et m'indiquer comment faire pour que le contenu du tableau s'affiche cellue par cellule ?
Je vous remercie par avance de votre aide !
Jean Marc
<html>
<head></head>
<body bgcolor=orange>
<h1><center><font face=arial> Love for Angelina and Chikito Ferrero</center></font></h1>
<?
$tableau=array(array("angelina","rogelio","clauida"),array("jeancito","ferrero","lokto"));
//echo $tableau[0][2];
for ($i=0;$i<3;$i++){
for($j=0;$j<3;$j++){
//print_r($tableau[$i][$j]);
echo"<table align=center border=1 bgcolor=yellow width=500><tr>";
$toto=$tableau[$i][$j];
echo "<td width=200><b><u>$toto</u></b></td><td width=100><font face=arial>$titi</font></td></tr></table>";
}}
?>