编写一段PHP程序,利用自定义数和循环语句实现在网页中输出表格.可手动输入行列。请问怎么修改下面的代码
<body><formid="form1"name="form1"method="post"action=""><p>行:<labelfor="h"></label><i...
<body>
<form id="form1" name="form1" method="post" action="">
<p>行:
<label for="h"></label>
<input type="text" name="h" id="h" />
</p>
<p>列:
<label for="l"></label>
<input type="text" name="l" id="l" />
</p>
<p>
<input type="submit" name="button" id="button" value="确定" />
</p>
</form>
<?php
function table ($x,$y){
echo "<table width='500' border='1'>";
for($h=1;$h<=$x;$h++){
echo "<tr>";
for($l=1;$l=$y;$l++){
echo "<td> </td>";
}
echo "</tr>";
}
echo "</table>";
}
if (isset($_POST["button"]))
table($_POST["h"],$_POST["l"]);
?>
</body>
</html>
出错原因:运行超过30秒。问:应该如何修改? 展开
<form id="form1" name="form1" method="post" action="">
<p>行:
<label for="h"></label>
<input type="text" name="h" id="h" />
</p>
<p>列:
<label for="l"></label>
<input type="text" name="l" id="l" />
</p>
<p>
<input type="submit" name="button" id="button" value="确定" />
</p>
</form>
<?php
function table ($x,$y){
echo "<table width='500' border='1'>";
for($h=1;$h<=$x;$h++){
echo "<tr>";
for($l=1;$l=$y;$l++){
echo "<td> </td>";
}
echo "</tr>";
}
echo "</table>";
}
if (isset($_POST["button"]))
table($_POST["h"],$_POST["l"]);
?>
</body>
</html>
出错原因:运行超过30秒。问:应该如何修改? 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询