用于在具有特定单词的文本文档中搜索的php

时间:2014-02-28 11:39:16

标签: php

这是关于php的问题 我有一个名为data.txt的文本文件,我存储了注册数据。 现在我需要在注册学生的文本字段中输入名称,并在网页或其他文本文档中显示该学生的数据

附有问题的第一个代码,用于存储从登记表格输入的数据

<?php
  $i=1;
  $fp= fopen("data.txt","a+");
  $file_content= "Data for student number".$i++."\r\n". "name:" .$_POST['fullname']."\r\n"  ."age:" .$_POST['age'] ."\r\n".  "email:"  .$_POST['email']."\r\n**********************************************************************" ;
  fwrite($fp,$file_content);  
  fclose($fp);
  echo "congratulations ! your data is stored";
?>

1 个答案:

答案 0 :(得分:0)

  $fp= fopen("data.txt","a+");

    $i=1;    
    preg_match_all('~\w+~', $file_content, $m);
     if($m){
           $file_content= "Data for student number".$i++."\r\n".
           "name:".$_POST['fullname']."\r\n"  ."age:" .$_POST['age'] ."\r\n".  "email:"
                  .$_POST['email']."\r
                 \n**********************************************************************";
          fwrite($fp,$file_content);  
          fclose($fp);
          echo "success";
      }
      else
      {
       echo "failed";
      }