我有一个多行的文本文件。我必须将每一行的内容显示为一个单独的单选按钮,然后将用户的选择存储在另一个文本文件中。我使用 PHP 完成了“读取文件并显示为单选按钮”部分。
<?php
$file = fopen("XYZ.txt", "r");
//Output a line of the file until the end is reached
echo "ABC" . "<br>";
while(!feof($file))
{
$f = fgets($file);
if (strpos ($f, ".abc") !== false)
{
echo "<input type='radio' name='abc'/>";
echo "<a href = \"ftp://blah/".$f."\">" .$f. "</a><br>";
}
}
fclose($file);
?>
我使用<a>
是因为我必须将每个单选按钮链接到一个站点。我不知道如何将选择存储在文本文件中。:(