一個php作的文本留言本的例子(五)

來源:互聯網
上載者:User
關鍵字 一個php作的文本留言本的例子(五)
現在我們來講一下reply.php的代碼:
---------------------------------
//reply.php



 function check_strlen_long($txt)
{
$len=strlen($txt);
$count=0;
for ($i=0;$i<$len;$i++)
{
if (ord($txt[$i])<128)
 { $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]."



 
 

     
 
      



------------------
到此為止,php的代碼我們已經寫完,剩下的是您要作一個留言本的本頭和底部
您可以設計任何的樣式.不過記得在本頭上面要有至少3個串連:查看 返回首頁 
發郵件.這樣您的留言本系統才算完整.不過由於這是一文本的留言本,所以您不用擔心資料庫的問題,您只要再寫一個guest.txt的檔案就完整了.雖然這個留言本沒有MySQL等等,可是功能仍然不錯.而且是完全屬於您自己的留言本.好了,下一節我們將為您講述guest.txt的建立和上傳留言本的幾個重要步驟.
未完待續...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.