$_POST[] kann den Wert nicht ermitteln, warum???
ԾvԾ人人余耳总
ԾvԾ人人余耳总 2019-06-19 17:49:54
0
2
1574

echo <<<'FORM'

<form action="" method="post">

<input type="number" name = "rows">行

<br />

<input type="number" name = "cols">列

<input type="submit" value="提交";

</form>

FORM;


$rows = isset($_POST['rows']) ? $_POST['rows'] : 3;

$cols = isset($_POST['cols']) ? $_POST['cols'] : 3;

// $rows = $_POST['rows'];

// $cols = $_POST['cols'];

echo '<table border=" 1" cellpacing="0" cellpadding="5">';

$i = 0;

while ($i<$rows) {

echo '<tr>';

$j = 0 ;

while ($j<$cols) {

echo '<td>'.($i * $cols + $j).'</td>';

$j++;

}

echo '</tr>';

$i++;

}

echo '</table>';

代码如上,获取不到行和列的数值

ԾvԾ人人余耳总
ԾvԾ人人余耳总

Antworte allen(1)
清音Susunma~

form 里面的action的值改成当前文件名,就像这样<form action="xx.php" method="post">

  • Antwort 额,我回家分开两个页面写就没问题 发现是form没有关闭标签,语法错误 抱歉浪费了您的时间
    ԾvԾ人人余耳总 Autor 2019-06-20 16:04:18
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage