基本的に、以下のコードはテキストファイルを読み込み、各行の近くにチェックボックスを付けて画面に表示します。しかし今、私はユーザーが任意のボックスをチェックして、選択した結果を新しいPHPファイルに表示できるようにしたいです-テキストファイルをもう一度読んで、どういうわけかそれを配列を参照する必要があると思いましたが、それでも私はスタックしているので、助けていただければ幸いです。
ありがとうございました。
最初のphpファイル
<?php
$filename = "file.txt";
$myarray = file($filename);
print "<form action='file2.php' method='post'>\n";
// get number of elements in array with count
$count = 0; // Foreach with counter is probably best here
foreach ($myarray as $line) {
$count++; // increment the counter
$par = getvalue($line);
if ($par[1] <= 200) {
// Note the [] after the input name
print "<input type='checkbox' name='test[$count]' /> ";
print $par[0]." ";
print $par[1]." ";
print $par[2]." ";
print $par[3]."<br />\n";
}
}
print "</form>";
選択した結果を表示する2番目のphpファイル
<?php
$filename = "file.txt";
$myarray = file($filename);
?>