如何将表单提交存储到文本文件中

时间:2013-01-17 15:09:40

标签: php html radio-button text-files

我有一个包含多行的文本文件。我必须将每行的内容显示为单独的单选按钮,然后将用户的选择存储在另一个文本文件中。我使用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>因为我必须将每个单选按钮链接到一个站点。我不知道如何将选择存储在文本文件中。 :(

0 个答案:

没有答案