長さ 30 行のテーブルを表示する必要がある Web ページ (PHP ファイル内から作成) があり、ユーザーは 30 行ごとに値を入力し、ボタンを押して入力した内容を PHP で処理できます。
とにかく、30行のテーブルで通常のHTMLフォームを書き出す代わりに、PHPでこのテーブルをはるかに少ないコードで作成する方法があるのではないかと思います.
SOそのままのように見えます
<form name="createtable" action="?page=createtable" method="POST" autocomplete="off">
<table border='1'>
<tr>
<th> Weight </th>
<th> CBM Min </th>
<th> CBM Max </th>
<th> Min </th>
</tr>
<tr>
<th> 1000 </th>
<th> 0.1 </th>
<th> 2.3 </th>
<th> <input type=text name=min1> </th>
</tr>
<tr>
<th> 1500 </th>
<th> 2.31 </th>
<th> 3.5 </th>
<th> <input type=text name=min2> </th>
</tr>
<tr>
<th> 2000 </th>
<th> 3.51 </th>
<th> 4.6 </th>
<th> <input type=text name=min3> </th>
</tr>
..... + 27 more rows
</table>
</form>
私は現在、上記のように完全なテーブルを書き出しています。体重、cbm の最小値と最大値の値は標準的な速度で増加していないため、通常のループは機能しないと思いますが、これらの値を配列に入れることはできますか? 私のphpは非常にさびています