>  기사  >  백엔드 개발  >  一个php作的文本留言本的例子(五)_PHP教程

一个php作的文本留言本的例子(五)_PHP教程

WBOY
WBOY원래의
2016-07-21 16:06:16782검색

现在我们来讲一下reply.php的代码:
---------------------------------
//reply.php




  function check_strlen_long($txt)
{
$len=strlen($txt);
$count=0;
for ($i=0;$i {
if (ord($txt[$i])  { $count=$count+1;}
  if (ord($txt[$i])==10 or ord($txt[$i])==32)
  {$count=0;}
  if ($count>=60)  
  {
  $txt[$i]="n";
  $count=0;
  }
}
  return $txt;
}

function encode ($txt)
{
$txt=strip_tags($txt);
$txt=htmlspecialchars($txt);
$message=StripSlashes($txt);
return $message;
}

  $content=file("guest.txt");
  $disptext=$content[$record-1];

if ($job=="addreply" and $replyname!="" and $replycontent!="")
{
$content=file("guest.txt");
$count=count($content);
$time = date(Y年m月d日H小时i分);
$ip=$REMOTE_ADDR;
$replycontent=StripSlashes($replycontent);
$replyname=encode($replyname);
$replycontent=htmlspecialchars($replycontent);
  $replycontent=check_strlen_long($replycontent);
$replycontent=nl2br($replycontent);
$replycontent=ereg_replace(chr(10),"",$replycontent);
$content[$record-1]=substr($content[$record-1],0,strlen($content[$i])-1); $content[$record-1]=$content[$record-1]."



   include('head.htm');?>
  
    
      
      if ($Submit)
       {
        if ($replyname=="" or $replycontent=="")
        {
      echo" ";
      echo"";
      echo"";
       }
       }
      ?>
       echo $disptext ?>  
        
        
      
        
        
      
        
        
      
        
        
      
    
    
";
      echo "出错了回复人姓名和回复内容必填!";
      echo"
回复大名  
          
        
  
          

回复内容


          
  
          
        
  
          
          >
          
               
          
        
   
            


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.