基本上,下面的代码读入一个文本文件并将其显示在屏幕上,每行附近都有复选框。但是现在我希望用户能够选中任何框,然后在新的 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>";
第二个 php 文件应该显示选定的结果
<?php
$filename = "file.txt";
$myarray = file($filename);
?>