Hello,
Inspire-toi de ceci
<?php
$colors = array("#FFFF55", "#55FFFF");
$header = "<html><body><table>";
$foot="</table></body></html>";
$data=array("pomme"=>"vert", "citron"=>"jaune", "abrticot"=> "orange",
"cerise"=> "noir");
print("$header\n");
$flag=0;
foreach($data as $key=>$value)
{
$row = sprintf("<tr bgcolor=%s><td>%s</td><td>%s</td></tr>\n",
$colors[$flag], $key, $value);
print($row);
$flag = 1-$flag;
}
print($foot);
?>
Johan
The software said "Requires Windows98, Win2000, or better,
So I installed Unix.