??      function004.php     
<html>
<head>
<title>7 ?????</title>

<style>
table{
border : solid 1px green;
width : 250;
}
</style>

</head>

<body>
<h1>function004???</h1>

<?php
$iro = array("00","33","66","99","cc","ff");

function td($a,$b,$c){
$iro = array("00","33","66","99","cc","ff");
echo "<th bgcolor =' $iro[$a]$iro[$b]$iro[$c]' >";
echo $iro[$a] . $iro[$b] . $iro[$c] . "</th>\n";
}

for($i=0 ; $i < count($iro) ; $i++){
echo "<table>\n";
for($j=0 ; $j < count($iro) ; $j++){
echo "<tr>\n";
for($k=0 ; $k < count($iro) ; $k++){
td($i,$j,$k);
}
echo "</tr>";
}
echo "</tr> \n</teble> \n<br />\n\n";
}
?>

</body>
</html>