??      foreach2-while.php     

?php5_8 ?foreach2-while.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(??)????????????
$i = 0;
while($i<count($n_list)){
echo "<tr><td> $n_list[$i] </td></tr>\n";
$i++;
}
?>
</table>
</body>
</html>