Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-13 12:39:13
Original
755 people have browsed it

post.php 文件
     require('config.php');
?>




$nikename=$arr_request['nikename'];

if (strlen($nikename)==0)
{
   echo "

";

   echo "

错误信息!

";
   echo "对不起,呢称必须填写!!! 请重填!
";
   echo "
";
   echo "免费留言本由小熊提供技术支持";
   echo "
";
   exit ;

}

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

  $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 "";
        echo "发表文章";
        echo "";
        echo "";
        echo "
";
        echo "
    璋㈣阿浣
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!