??      foreach2-for.php     

?php5_8 ?foreach2-for.php?

<html>
<head><title>result for foreach2</title>

<style>
table{
background-color:black;
padding:1px;
}
td{
background-color:white;
padding:3px;
}
</style>
</head>

<body>
<table>
<?php
$n_list = array("??","??","??","??","??","??","??");
$max = count($n_list); #count(??)????????????
for($index=0;$index<$max;$index++){
echo "<tr><td> $n_list[$index] </td></tr>\n";
}
?>
</table>
</body>
</html>