用代码写一百以内乘法表要求在表格输入数字后出来三角形乘法表,帮忙把表格和php关联

<html><head><metahttp-equiv="content-type"content="text/html;charset=gbk"/></head><h1... <html>
<head>
<meta http-equiv="content-type"content="text/html;charset=gbk"/>
</head>
<h1>九九乘法表</h1>
<body>
<form>
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
function MultiplicationTable($n=100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
?>
</body>
</html>
展开
 我来答
匿名用户
推荐于2016-08-01
展开全部
<html>
<head>
<meta http-equiv="content-type"content="text/html;charset=utf-8"/>
</head>
<h1>九九乘法表</h1>
<body>
<?php
if(isset($_GET['figure'])){

function MultiplicationTable($n = 100)
{
   for($i=1;$i<=$n;$i++)
   {
       for($j=1;$j<=$i;$j++)
       {
           echo $j."*".$i."=".($j*$i).' ';
       }
      echo "<br>";
   }
}

MultiplicationTable($_GET['figure']);

}else{
?>
<form action='' method="get">
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
}
?>
</body>
</html>

 没有加验证,可以自己加上

shenmdyw
2015-11-04 · TA获得超过670个赞
知道小有建树答主
回答量:897
采纳率:100%
帮助的人:246万
展开全部
<html>
<head>
<meta http-equiv="content-type"content="text/html;charset=utf-8"/>
</head>
<h1>九九乘法表</h1>
<body>
<form action="" method='get'>
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
$figure=isset($_GET['figure'])?$_GET['figure']:100;
function MultiplicationTable($n=100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
MultiplicationTable($figure);
?>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式