我想在html中创建一个关于用户输入的no.of行和no.of列的表。
任何人都可以通过提供代码来帮助我......
答案 0 :(得分:0)
为了将来参考,我建议你包含你所尝试的代码片段;不仅如此,我们可以进一步提供帮助,而且还将进一步有益于您的知识。
我已经快速完成了一些代码,这是未经测试的,所以如果它不起作用我会道歉。下面的代码假设已经提交了一个表单,并且已经使用行名称设置了一个变量,另一个表示cols。
<?php
$rows = isset($_POST["rows"]) ? $_POST["rows"] : 0; // get the number of rows submitted
$cols = isset($_POST["cols"]) ? $_POST["cols"] : 0; // get the number of cols submitted
?>
<!DOCTYPE html>
<html>
<body>
<table>
<?php
// begin to create the table - rows first
for ($row = 0; $row < $rows; $row++) { ?>
<tr>
<?php for ($col = 0; $col < $cols; $col++) { ?>
<td></td>
<?php } // end cols for loop ?>
</tr>
<?php } // end rows for loop ?>
</table>
</body>
</html>
我希望我能正确理解这个问题,这个答案证明是有帮助的。