挑战最棒的留言本的源码(二)

所属分类: 网络编程 / PHP编程 阅读数: 1572
收藏 0 赞 0 分享
post.php 文件
<?php
     require('config.php');
?>


<?php


$nikename=$arr_request['nikename'];

if (strlen($nikename)==0)
{
   echo "<center>";

   echo "<h2><font color=red>错误信息!</font></h2>";
   echo "对不起,<font color=red>呢称</font>必须填写!!! 请重填!<br>";
   echo "<hr></hr>";
   echo "免费留言本由<a href=http://little.oso.com.cn>小熊</a>提供技术支持";
   echo "</center>";
   exit ;

}

$date_now=date('Y/m/d H:i:s');
$ip_address=getenv("REMOTE_ADDR");
$messageold=$arr_request['message'];
//$pattern="/n/";
//$replacement="<br>";

  $message=computer_message($messageold,$hang_zifu_number);

$subjectold=$arr_request['subject'];
if (strlen($subjectold)>$hang_zifu_number)

  $subject=computer_message($subjectold,$hang_zifu_number);
else
  $subject=$subjectold;

$str_sql=" insert into $table_name  
(nikename,subject,date_created,ip_address,message,email_address,zhuye_address,oicq)
values
( '$nikename',
  '$subject',
  '$date_now',
  '$ip_address',
  '$message',
  '".$arr_request['email_address']."',
  '".$arr_request['zhuye_address']."',
  '".$arr_request['oicq']."'

)";

$result=mysql_db_query($db_name,$str_sql,$id_link);

if (! $result){
       affy_error_exit('SQL Insert Execution has failed.');
   }

else  

  {


        echo "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">";
        echo "<HTML><HEAD><TITLE>发表文章</TITLE>";
        echo "<META content="text/html; charset=gb2312" http-equiv=Content-Type>";
        echo "<meta HTTP-EQUIV="REFRESH" CONTENT="2;URL=display.php">";
        echo "</head><body topmargin="0"><br>";
        echo "<ul>谢谢你发表留言,将自动显示留言内容";
        echo "&nbsp;<br>";
        echo "<a href=display.php>如果你的浏览器没有自动的返回到留言簿首页,?
                请点这里返回.";
        echo "</a></ul>";


        exit;  

   
  }
?>

index.html 文件

<html>
<center>

<title>谢谢你的留言!</title>
<h1><font color=blue>我的留言本</font></h1>
<font color=navy>首先感谢你的留言,你的每一句话我都会仔细阅读!!!</font>

  <form action="post.php" method="post">
  <table>
  <tr>
   <td><font color=teal>呢称:</font><font color=red>(不能为空)</font></td><td>    
    <input type="text" name="nikename" value=""></td>
  </tr>

   
  <tr>
   <td>OICQ号码:</td><td>  

    <input type="text" name="oicq" value=""></td>
  </tr>
  <tr>
   <td>e-mail: </td><td>      
    <input type="text" name="email_address" value="" size="30"></td>
  </tr>
  <tr>
   <td>个人主页:</td><td>  
    <input type="text" name="zhuye_address" value="http://" size="40"></td>
  </tr>
  <tr><td>
    主题:</td><td>  
    <input type="text" name="subject" size="40" ></td>
  </tr>
  <tr><td>
    内容:</td><td> </td>
  </tr>
  <tr><td colspan="2">
    <textarea name="message" cols="60" rows="8"></textarea></td>
  </tr>
  <tr>
    <td>
      <input type="submit" value="完成留言">
    </td>
    <td>
      <input type="reset" value="重新来过">
    </td>
  </tr>
  </table>
  </form>
   <p>
<a href=display.php>查看留言</a>
<hr></hr>
免费留言本由<a href="http://little.oso.com.cn" >小熊</a>提供技术支持

</center>

</html>

display.inc文件!!!


<tr bgcolor=>
<td>
<a href=mailto:<?php echo $record->email_address ?> >
<font color="blue" size=4><strong><?php echo $record->nikename ?></strong></font>
</a>
</td>
<td><font color="navy">留言时间:<?php echo $record->date_created ?></font></td>

<td>来自:

<?php
$ip_address=ip_question($record->ip_address);
echo $ip_address;   
?>

</td>
</tr>
<tr bgcolor=>
<th colspan=3 align=left>主题:<font color=teal><?php echo $record->subject ?></font></th>

</tr>

<tr><th colspan=3 align=left><font color="#416AAF">
<?php echo $record->message ?></font></th>
</tr>


<?php  

if ($record->huifu_biaozi)  
   {  
     ?>
      <tr><th colspan=3 align=left><font color="red"><br><br>版主回复:</font><font color="navy">
      <?php echo $record->huifu ?></font></th>
      </tr>
    <?php

   }

?>  



<tr>
<th colspan=3 align=left><br>
<a href=mailto:<?php echo $record->email_address ?> >
<img src=image/mail.gif  
alt="<?php echo $record->nikename ?>的e-mail地址是:<?php echo $record->email_address ?> "  
border="0" width="15" length="15">邮件</a>
<a href=<?php echo $record->zhuye_address ?>><img src=image/home.gif  
alt="<?php echo $record->nikename ?>的主页地址是:<?php echo $record->zhuye_address ?> "  
border="0"  
width="14" length="14" >主页</a>
<img src=image/oicq.gif border="0" alt="<?php echo $record->nikename?>的OICQ是:
<?php echo $record->oicq ?>"  
width="14" length="14" >OICQ</a>

<a href=action.php?action=delete&key_liuyan=<?php echo $record->key_liuyan ?>><img src=image/del.gif border="0" width="12" length="12" alt="只有版主才有删除的权限哦!">删除</a>
<a href=action.php?action=huifu&key_liuyan=<?php echo $record->key_liuyan ?> ><img src=image/replay.gif border="0" width="14" length="14" alt="不好意思,现在暂时只有版主才能回复">回复</a>


</th></tr>

<tr>
<td colspan="3"><hr SIZE ="1"></td>
</tr>  

更多精彩内容其他人还在看

两种php去除二维数组的重复项方法

这篇文章主要介绍了两种php去除二维数组的重复项方法,大家可以进行比较看哪一种更适合自己,需要的朋友可以参考下
收藏 0 赞 0 分享

php实现分页功能的3种方法第1/3页

这篇文章主要介绍了php实现分页功能的3种方法,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

php对二维数组进行相关操作(排序、转换、去空白等)

这篇文章主要介绍了php对二维数组进行相关操作,包括php对二维数组排序、转换、去空白,以及去重复值等,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

php实现网站留言板功能

这篇文章主要介绍了php实现网站留言板功能,主要仿照了畅言留言板和网易跟帖样式进行制作,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

PHP实现HTML页面静态化的方法

这篇文章主要介绍了PHP实现HTML页面静态化的方法,分享了静态处理的方法,静态处理后的优势,并提供了多种静态的方法,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

php对文件夹进行相关操作(遍历、计算大小)

这篇文章主要介绍了php对文件夹进行相关操作,包括遍历并打印指定目录下所有文件和计算文件大小去空白,以及去重复值等,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

非常全面的php日期时间运算汇总

这篇文章主要整理了关于php日期时间运算相关内容,涉及知识点较为全面,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

php根据用户语言跳转相应网页

这篇文章主要介绍了php根据用户语言跳转相应网页的方法,主要区分国内国外,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

双冒号 ::在PHP中的使用情况

前几天在百度知道里面看到有人问PHP中双冒号::的用法,当时给他的回答比较简洁因为手机打字不大方便!今天突然想起来,所以在这里总结一下我遇到的双冒号::在PHP中使用的情况
收藏 0 赞 0 分享

PHP explode()函数的几个应用和implode()函数有什么区别

这篇文章主要介绍了PHP explode()函数的几个应用和implode()函数有什么区别,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多