<html>
<body>
<center>
<table border="1">
<tr>
<td> </td>
<?PHP
for($cols=1; $cols<=9; $cols++)
print "<td>$cols</td>";
?>
</tr>
<?PHP
for($rows=1; $rows<=9; $rows++)
{
print"<tr>\n";
print"<td>$rows</td>";
for($cols=1;$cols<=9;$cols++)
{
print"<td>".$rows*$cols."</td>";
}
print"</tr>\n";
}
foreach($cols as $rows=>$price){
if($price<=$low)
}
?>
</table>
</center>
</body>
</html>
이표를 불러오고 싶은데요 불러올때 2단이라고 입력하면 2단만 파랗게 나오게 하고싶은데 조언좀 부탁해요 ㅠㅠ