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

5年以前  |  阅读数:1017 次  |  编程语言:PHP 

大家知道,数据库对于网络来说的重要性.由于cgi的复杂,现在asp和php+mysql已经成为主流.几乎所有的个人网页都要用到留言本,可是申请的留言本很不稳定.这为网上的交流带来了诸多不便.所以,希望拥有自己的留言本的朋友越来越多.
但是,免费的个人主页支持asp和php的很少.笔者现在向您推荐奥索网,(http://www.oso.com.cn)支持php.这样您便有了能够拥有自己留言本的基础.现在,我就通过一个文本留言本的例子来讲述php的简单使用.
首先,我们先确定,留言的几个过程:写留言,发送,查看.(搜索)等等.而且对于斑竹来说,管理留言本又是不可或缺的.这样我们就不妨定位于6个php文件,1个文本文件.6个php文件分别为:guest.php manage.php reply.php sys.php del.php edit.php,1个文本文件为:guest.txt
先来看看guest.php的内容,你当然可以直接将下面的内容放到您的php网页里,请尊重作者的劳动,谢谢.
----------------------
//guest.php:<?

require("sys.php");
if ($B1)
{
if ($message=="" or $name=="")
{
$errorm="出错了!!!姓名和留言内容必填";
}
else
{

写入数据

$space = " ";
$time = date(Y年m月d日H小时i分);
$ip=$REMOTE_ADDR;
$name=encode($name);
$homepage=encode($homepage);
$from=encode($from);
$email=encode($email);
$message=StripSlashes($message);
$message=htmlspecialchars($message);
$message=check_strlen_long($message);
$message=nl2br($message);
$guestcontent = "留言内容:
<!--content>$message<!--endcontent> ";
$guestcontent=$guestcontent."
留言人大名:<!--name>$name<!--endname> ";
if ($email !="")
{$guestcontent=$guestcontent."
电子信箱<a href=\"mailto:$email\"><!--email>$email<!--endemail>"."$space";}
if ($homepage !="http://")
{$guestcontent=$guestcontent."主页:$hompage<a href=\"$homepage\"><!--homepage>$homepage<!--endhomepage>";}
$guestcontent=$guestcontent."
时间:$time 来自:<!--from>$from<!--endfrom> $ip";
$guestcontent=ereg_replace(chr(10),"",$guestcontent);
$guestcontent=$guestcontent."


\n";
$fp=fopen($guestfile,"a");
fputs($fp,$guestcontent);
fclose($fp);
}
}

?>

zihanonlinegbook
"; echo ""; echo ""; } ?>
"; echo "$errorm"; echo "
姓名(必填)
主页:
来自:
Email:
请留言(必填)
        <input type="reset" value="重 写" name="B2">   
        </font></div>   
    </td>   
  </tr>   
</form>   
管理密码:
          <input type=submit value="确  定" name="submit">   
        </td>   
      </tr>   
      </form>   
    </table>   
  </td>   
  <td>   
    <table width="100%" border="0" cellpadding="0" cellspacing="0">   
      <form action=guest.php method=post>   
      <tr>    
        <td> 请输入关键字:    
          <input type="text" name="keyword" size="10">   
          <input type="submit" name="search" value="搜索留言">   
        </td>   
      </tr>   
      </form>   
    </table>   
  </td>   
</tr>   
$keyword",$content[$i]); $subscript++; } } return $ArrSearch; }//end function $one_page_line=15; $content = file($guestfile); if (isset($search) and isset($keyword) and $keyword!="") { $content=search($keyword); } $count =count($content); ?>
  <?   
  $int_page_count=$count;//总条数;   
  $int_page_num=ceil($int_page_count/$one_page_line);//总页数;   
  echo "<font color=#CC33FF>分页:";   
  for ($i=1;$i<=$int_page_num;$i++)   
  {   
  echo "<a href=guest.php?page=$i>".$i."</a> ";   
  }   
 echo "</font>";   
 if (isset($search) and isset($keyword) and $keyword!="")   
 {   
  echo "<br><center>";   
  echo "下面的留言中包含关键字<font color=red>$keyword</font>共<font color=red>".$count."</font>条</center>";   
 }   
  ?>   
  </td><td><p align=right>共有<font color=red><?echo "$count"?></font>条</p></td>   
</tr>   

($begin_line-$one_page_line);$j--) { $text=$text.""; $text.=$content[$j-1];
      //数组找下标从0开始.   
     }   

echo "$text";
?>

回复 编辑 删除$j
\------------------ 未完待续...
 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例