程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP+TEXT留言本(四)

PHP+TEXT留言本(四)

編輯:PHP綜合

這一節我們將dele.PHP和sys.PHP放上來.
---------
//dele.PHP<Html>

<head>
<title>刪除留言</title>
<style>
<!--
A:link {text-decoration: none ; color:0000ff}
A:visited {text-decoration: none; color:004080}
A:active {text-decoration: none}
A:hover {text-decoration: underline; color:ff0000}
BODY {FONT-SIZE:10pt}
TH {FONT-SIZE:10 pt}
TD {FONT-SIZE: 10pt}
-->
</style>
<meta http-equiv="Content-Type" content="text/Html; charset=gb2312">
</head>
<?
require("sys.PHP");
if ($Submit)
{
if ($passWord<>$managepwd)
  {$errorm="<font color=red>密碼錯誤</font>.無權操作..";}
else 
{
$content=file($guestfile);
$message=$content[$record-1];
$count=count($content);
if ($dele=="delreply")
     {
     $replylen=strlen(strstr($message,"<!--reply>"));
     $long=strlen($message);
     $len=$long-$replylen;
     $message=substr($message,0,$len);
     }
     else
     {$message="";}
//writefile
$fp=fopen($guestfile,"w");
for ($i=0;$i<$count;$i++)
  {
  if ($i==($record-1)){$content[$i]=$message;}
  fputs($fp,$content[$i],strlen($content[$i]));
  }//end for
fclose($fp);
echo "<meta http-equiv=Refresh content="1;url=guest.PHP">";
exit;
}
}// end ifSubmit
$content=file($guestfile);
$message=$content[$record-1];
$found=ereg("<!--reply>",$message);
?>
<body bgcolor="#FFFFFF" background="back.gif">
<? include("head.htm"); ?>
<table width="68%" border="1" cellpadding="5" align="center" cellspacing="0" bordercolor="#F2F2F2">
<form action=dele.PHP method=post>
<?
  if ($errorm)
  {
echo "<tr>"; 
echo "<td height=27>$errorm</td>";
echo "</tr>";
  }
?>
  <? echo $message ?>
    <tr align="center"> 
      <td height="37" bgcolor="#f0f0f0"> 
        <?
     if ($found)
     {
     echo "<input type=radio name=dele value=delall>";
     echo "全部刪除 ";
     echo "<input type=radio name=dele value=delreply checked>";
     echo "僅刪除回復";
     }
     ?>
        <font color="#000000">管理密碼</font> 
        <input type="password" name="passWord" size="10">
      <input type=hidden name=record value=<? echo "$record";?>>
        <input type="submit" name="Submit" value="我要刪除了">
      </td>
  </tr>
  </form>
</table>
<? include("bottom.htm"); ?>
</body>
</Html>

------
//sys.PHP
<title>zihanonline</title>
<?
$managepwd='zihanonline';
$guestfile="guest.txt";
function check_strlen_long($txt)

$count=0;
$arrtemp=$txt;
$len=strlen($txt);
$txt=$txt.'            ';
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>=70) 
  {
    for ($j=$i;$j<$len;$j++)
    {
    $txt[$j+1]=$arrtemp[$j];
    }
  $txt[$i]="n";
  $len=$len+1;
  $txt[$len]=$arrtemp[$len-1];
  $count=0;
  $arrtemp=$txt;
  }//end if count
}
  $txt=trim($txt);
  return $txt;
}//end function
function encode ($txt)
{
$txt=strip_tags($txt);
$txt=Htmlspecialchars($txt);
$message=StripSlashes($txt);
return $message;
}
function ubb($txt)
{ }
?>
<body bgcolor="#FFFFFF" background="back.gif">
----------
注意sys.PHP中的" $managepwd='zihanonline' "一欄中等號後的是留言本的管理密碼號,此時是默認的zihanonline.您可以修改為自己的號碼.
請點下面相關文章閱讀下一節...

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved