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


Posted in PHP onOctober 09, 2006

现在我们来讲一下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]."<!--reply><tr><td colspan=4><ul><font color=#AB00E1>回复内容:</font><br>".$replycontent."<br>回复人大名:".$replyname."<br><font color=#CC33FF>时间:$time 来自:$ip</font></ul><hr size=1 color=blue></td></tr>n";
$fp=fopen("guest.txt","w");
for ($i=0;$i<$count;$i++)
  {
   fputs($fp,$content[$i],strlen($content[$i]));
  }
  echo "<meta http-equiv=Refresh content=1;url=guest.php>";
  exit;

}
  ?>  
<title>zihanonline</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: 10p}
TH {FONT-SIZE: 10pt}
TD {FONT-SIZE: 10pt}
-->
</style>
<body bgcolor="#FFFFFF" background="back.gif">
<div align=center >
  <? include('head.htm');?>
  <table border= 1  width= 65%  height= 169 cellpadding="8" cellspacing="0" bordercolor="#E3E3E3" >
    <form method= POST  action=reply.php >
      <?
      if ($Submit)
       {
        if ($replyname=="" or $replycontent=="")
        {
      echo"<tr align=left valign=middle bgcolor=#F0F0F0> ";
      echo"<td width= 100%  height= 31 > ";
      echo "<font color=red>出错了</font>回复人姓名和回复内容必填!";
      echo"</td>";
      echo"</tr>";
       }
       }
      ?>
      <? echo $disptext ?>  
      <tr align="left" valign="middle" bgcolor="#F0F0F0">  
        <td width= 100%  height= 31 bgcolor="#FFFFFF" > 回复大名  
          <input type= text  name= replyname  size= 20 >
        </td>
      </tr>
      <tr valign="middle">  
        <td width= 100%  height= 26  align= left bgcolor="#f0f0f0" >  
          <p>回复内容</p>
          </td>
      </tr>
      <tr align="center">  
        <td width= 100%  height= 52  valign= top bgcolor="#FFFFFF" >  
          <textarea rows= 6  name= replycontent  cols= 46 wrap="VIRTUAL" ></textarea>
        </td>
      </tr>
      <tr valign="middle" align="center" bgcolor="#F0F0F0">  
        <td width= 100%  height= 14 bgcolor="#f0f0f0" >  
          <input type=hidden name=job value=addreply>
          <input type=hidden name=record value=<? echo $record ?>>
          <input type= submit  value= 提交  name=Submit >
               
          <input type=reset value= 重写  name= B2 >
        </td>
      </tr>
    </form>
    </table>   
    <?include('bottom.htm');?>        
</div>
</body>
</html>
------------------
到此为止,php的代码我们已经写完,剩下的是您要作一个留言本的本头和底部
您可以设计任何的样式.不过记得在本头上面要有至少3个连接:查看 返回主页  
发邮件.这样您的留言本系统才算完整.不过由于这是一文本的留言本,所以您不用担心数据库的问题,您只要再写一个guest.txt的文件就完整了.虽然这个留言本没有mysql等等,可是功能仍然不错.而且是完全属于您自己的留言本.好了,下一节我们将为您讲述guest.txt的建立和上传留言本的几个重要步骤.
未完待续...

PHP 相关文章推荐
用PHP和ACCESS写聊天室(十)
Oct 09 PHP
php你的验证码安全码?
Jan 02 PHP
用PHP来计算某个目录大小的方法
Apr 01 PHP
PHP资源管理框架Assetic简介
Jun 12 PHP
php计算数组相同值出现次数的代码(array_count_values)
Jan 20 PHP
基于PHP后台的Android新闻浏览客户端
May 23 PHP
mac下多个php版本快速切换的方法
Oct 09 PHP
Thinkphp整合微信支付功能
Dec 14 PHP
php 一维数组的循环遍历实现代码
Apr 10 PHP
PHPExcel实现表格导出功能示例【带有多个工作sheet】
Jun 13 PHP
php操作mongodb封装类与用法实例
Sep 01 PHP
因str_replace导致的注入问题总结
Aug 08 PHP
一个php作的文本留言本的例子(一)
Oct 09 #PHP
PHP的类 功能齐全的发送邮件类
Oct 09 #PHP
以文本方式上传二进制文件的PHP程序
Oct 09 #PHP
用户的详细注册和判断
Oct 09 #PHP
PHP编程与应用
Oct 09 #PHP
谈谈PHP语法(2)
Oct 09 #PHP
无数据库的详细域名查询程序PHP版(1)
Oct 09 #PHP
You might like
php相当简单的分页类
2008/10/02 PHP
在字符串指定位置插入一段字符串的php代码
2010/02/16 PHP
Symfony2学习笔记之系统路由详解
2016/03/17 PHP
浅谈PHP检查数组中是否存在某个值 in_array 函数
2016/06/13 PHP
JS 面向对象的5钟写法
2009/07/31 Javascript
JavaScript 操作键盘的Enter事件(键盘任何事件),兼容多浏览器
2010/10/11 Javascript
javascript判断用户浏览器插件安装情况的代码
2011/01/01 Javascript
javascript获取xml节点的最大值(实现代码)
2013/12/11 Javascript
响应式表格之固定表头的简单实现
2016/08/26 Javascript
KnockoutJS 3.X API 第四章之数据控制流component绑定
2016/10/10 Javascript
微信小程序 自己制作小组件实例详解
2016/12/22 Javascript
BootStrap实现带关闭按钮功能
2017/02/15 Javascript
vue-router:嵌套路由的使用方法
2017/02/21 Javascript
微信小程序 input表单与redio及下拉列表的使用实例
2017/09/20 Javascript
vue-cli的eslint相关用法
2017/09/29 Javascript
angularjs实现天气预报功能
2020/06/16 Javascript
vue结合Echarts实现点击高亮效果的示例
2018/03/17 Javascript
JS实现进度条动态加载特效
2020/03/25 Javascript
js简单粗暴的发布订阅示例代码
2021/01/23 Javascript
Python找出list中最常出现元素的方法
2016/06/14 Python
Python计算字符宽度的方法
2016/06/14 Python
DES加密解密算法之python实现版(图文并茂)
2018/12/06 Python
python 图片去噪的方法示例
2019/07/09 Python
Python之指数与E记法的区别详解
2019/11/21 Python
Django crontab定时任务模块操作方法解析
2020/09/10 Python
有关pycharm登录github时有的时候会报错connection reset的问题
2020/09/15 Python
一篇文章带你搞定Ubuntu中打开Pycharm总是卡顿崩溃
2020/11/02 Python
css3中背景尺寸background-size详解
2014/09/02 HTML / CSS
Capitol Lighting的1800lighting.com:住宅和商业照明
2019/04/10 全球购物
利用异或运算实现两个无符号数的加法运算
2013/12/20 面试题
考博专家推荐信模板
2013/12/02 职场文书
证婚人经典证婚词
2014/01/09 职场文书
翻译学院毕业生自荐书
2014/02/02 职场文书
2014年9.18纪念日演讲稿
2014/09/14 职场文书
群众路线教育查摆剖析材料
2014/10/10 职场文书
详解Redis主从复制实践
2021/05/19 Redis