gpt4 book ai didi

php - 有没有办法让我的 PHP 输出以表格的形式出现? (它必须在 while 嵌套循环中)

转载 作者:搜寻专家 更新时间:2023-10-31 20:57:26 26 4
gpt4 key购买 nike

具体来说,我想要一个基于用户输入的乘法表。我只需要表格,因为输出已经正确。假设我的输入乘数是 2。

这是我尝试制作表格时的代码。

<!DOCTYPE html>
<html>
<head>
<title> Multiplication Table </title>
</head>

<body>
<form method="POST" action="#">
Enter Multiplier: <input type="text" name="mult"> <br>
<input type="submit" name="m" value="Multiply">
</form>
<table border="1">
<?php
if(isset($_POST["m"])){
$mult = 0;
$x = 1;
$mulpli = 1;
$pro = 0;

$mult=$_POST["mult"];

while($mulpli <= $mult)
{
echo "<tr>". "<th>". " ";
echo "<th>". $mulpli;
while($x <= $mult)
{
$pro=$x*$mulpli;
echo "<tr>";
echo "<th>". $x;
echo "<th>". $pro;
$x=$x+1;
}
$x = $x-$mult;
$mulpli=$mulpli+1;
}
}
?>
</th></th></tr></th></th></tr>
</table>

</body>
</html>

表格:

table

我想要的输出:

My desired output

最佳答案

这应该可以做到。我使用了 PHP 的 alternative syntax更清晰的 View 代码:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Multiplication Table</title>
<style type="text/css">
table, th, td { border: 1px solid black; }
th, td { text-align: center; }
</style>
</head>

<body>
<form method="post">
<label>Enter multiplier limit: <input type="text" name="limit"></label>
<button type="submit">Show Table</button>
</form>

<?php if (isset($_POST['limit'])):
$limit = max(1, (int)$_POST['limit']);
?>
<table>
<tr>
<?php for ($x = 0; $x <= $limit; $x++): ?>
<th scope="col"><?= $x ?: '' ?></th>
<?php endfor ?>
</tr>
<?php for ($y = 1; $y <= $limit; $y++): ?>
<tr>
<th scope="row"><?= $y ?></th>
<?php for ($x = 1; $x <= $limit; $x++): ?>
<td><?= $y * $x ?></td>
<?php endfor ?>
</tr>
<?php endfor ?>
</table>
<?php endif ?>

</body>
</html>

关于php - 有没有办法让我的 PHP 输出以表格的形式出现? (它必须在 while 嵌套循环中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54721251/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com