現在我們來講一下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的建立和上傳留言本的幾個重要步驟.
未完待續...