我对 php 很陌生。我正在读一本书,其中有一个关于 while 循环的例子:
<html>
<body>
<table border="0" cellpadding="3">
<tr>
<td bgcolor="#CCCCCC" align="center">Distance</td>
<td bgcolor="#CCCCCC" align="center">Cost</td>
</tr>
<?
$distance = 50;
while ($distance <= 250) {
echo "<tr>
<td align=\"right\">".$distance."</td>
<td align=\"right\">".($distance / 10)."</td>
</tr>\n";
$distance += 50;
}
?>
</table>
</body>
</html>
这是我在 Apache Web 服务器上运行此代码时的结果:
\n"; $distance += 50; } ?>
Distance Cost
".$distance." ".($distance / 10)."
我不知道为什么$distance
不打印的值。你能帮我修一下吗?非常感谢你!