建站极客
网络编程 PHP编程 正文
一个php作的文本留言本的例子(四)
所属分类:
网络编程 / PHP编程
阅读数:
1588
收藏 0
赞 0
分享
这一节我们将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.您可以修改为自己的号码. 未完待续...
两种php去除二维数组的重复项方法 这篇文章主要介绍了两种php去除二维数组的重复项方法,大家可以进行比较看哪一种更适合自己,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
php实现网站留言板功能 这篇文章主要介绍了php实现网站留言板功能,主要仿照了畅言留言板和网易跟帖样式进行制作,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
PHP实现HTML页面静态化的方法 这篇文章主要介绍了PHP实现HTML页面静态化的方法,分享了静态处理的方法,静态处理后的优势,并提供了多种静态的方法,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
php对文件夹进行相关操作(遍历、计算大小) 这篇文章主要介绍了php对文件夹进行相关操作,包括遍历并打印指定目录下所有文件和计算文件大小去空白,以及去重复值等,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
非常全面的php日期时间运算汇总 这篇文章主要整理了关于php日期时间运算相关内容,涉及知识点较为全面,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
php根据用户语言跳转相应网页 这篇文章主要介绍了php根据用户语言跳转相应网页的方法,主要区分国内国外,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
双冒号 ::在PHP中的使用情况 前几天在百度知道里面看到有人问PHP中双冒号::的用法,当时给他的回答比较简洁因为手机打字不大方便!今天突然想起来,所以在这里总结一下我遇到的双冒号::在PHP中使用的情况
评论 0
收藏 0
赞 0
分享
查看更多