编写一段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秒。问:应该如何修改?
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
上官元恒zsd
2013-05-13 · TA获得超过1770个赞
知道小有建树答主
回答量:3799
采纳率:28%
帮助的人:1171万
展开全部
,。。。。第二个for有错误,你太粗心了。,,
追问
能明确指出吗?
追答
for($l=1;$l=$y;$l++){改为for($l=1;$l<=$y;$l++){
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式