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

config.php文件

<?php  
// 你的用户名和密码,以及数据库名,和表名,在这里一次定义!!!
// 由于怕用户名和密码被别人通过浏览器看到,所以用了php的扩展名,这样通过浏览就看不到了!!!.

$username='your_name';          //用户名
     $password='your_password';          //密码

$hostname='localhost';              //主机名,一般都为localhost

$db_name='your_db_name';           //数据库名
     $table_name='your_liuyan_table';        //存放留言的表名

$table_name_control='your_control_table';    //控制表名

$number_records_to_display=5;  //每页显示的留言条数!

$hang_zifu_number=50;  //换行的一行字符数!

// 连接数据库,在这里连好!!!

$id_link=@mysql_connect($hostname,$username,$password);
     if (! $id_link) {
        affy_message("The connection to the local dtabase has failed.");}

// 处理参数,以后所有参数都可以通过 $arr_request['name']得到,不管是post的还是get的!!!

$arr_request=array();
  if (count($HTTP_GET_VARS)) {
     while (list($key,$value)=each($HTTP_GET_VARS)) {
         $arr_request[strtolower($key)]=$value;
     }
  }

if (count($HTTP_POST_VARS)) {
     while (list($key,$value)=each($HTTP_POST_VARS)) {
         $arr_request[strtolower($key)]=$value;
     }
  }

// 一些出错处理函数!

function affy_footer() {
    echo '</body></html>';
  }

function affy_header($title) {
    echo '<html><head><title>';
    echo "$title";
    echo '</title></head><body>';
  }

function affy_message($msg) {
    echo '<table>';
    echo '<tr><td>';
    echo "$msg";
    echo '</td></tr>';
    echo '</table>';
  }

function affy_error_exit($msg) {
      $errno = mysql_errno();
      $error = mysql_error();
      echo '<html><head><title>Error</title></head><body>';
      echo $msg;
      echo "<br>Error: ($errno) $error<br>";
      echo '</body></html>';
        exit();
  }

// 一些message处理函数!!!

//$test="2123.1.45.189";

function ip_question($msg)
{
//echo $msg;
//echo "<br>";
$ip=preg_split("/./",$msg);
$num=count($ip);
//echo $num;
$result="";
for($i=0;$i<$num-1;$i++)
{ $result=$result .$ip[$i].".";
  //echo $ip[$i];
  //echo "<br>";

}
$result=$result ."XX";
return($result);  
}

//$result=ip_question($test);
//echo $result;

function add_blankto50($msg,$hang_zifu_number)
{
$num=strlen($msg);

$num_need=$hang_zifu_number-$num;
$str_suffix="";
for ($i=0;$i<$num_need;$i++)
{
  $str_suffix=$str_suffix." ";

}
//$num6=strlen($str_suffix);
//echo $num6;
//echo "<br>";

$pattern='/^(.*)/';
$replacement="\1$str_suffix";

$msg=preg_replace($pattern,$replacement,$msg);

return($msg);

}

function check_en_num($msg)
{
$pattern='/[x00-x7f]/';

preg_match_all($pattern,$msg,$matches);

$num2=count($matches[0]);

return($num2%2);

}

function short_one($msg)
{
$pattern='/.$/';
$replacement='';
$result=preg_replace($pattern,$replacement,$msg);

return($result);

}

function pian_question($msg)
{
$pattern="/'/";
$replacement="'";
$temp=preg_replace($pattern,$replacement,$msg);

$pattern="/\'/";
$replacement="'";
$result=preg_replace($pattern,$replacement,$temp);

return($result);

}

function check_last($msg)
  {

$pattern='/.$/';

preg_match($pattern,$msg,$match);

if ($match[0]>'~')
  return(1);
else  
  return(0); // echo "英文";

}

//$num5=short_one($test);
//echo $num5;

function computer_message($msg,$hang_zifu_number)
{
$msg=pian_question($msg);

$arr_phone=preg_split("/n/",$msg);

$num=count($arr_phone);
//echo $num;
//echo "<br>";
//$num2=strlen($arr_phone[0]);
//echo $num2;
$first_line=1;

for ($i=0;$i<$num;$i++)
{
   while($str_num=strlen($arr_phone[$i])>$hang_zifu_number)
      {

$first_line=0;
         $workstr=$arr_phone[$i];

$pattern_pre50="/.{".$hang_zifu_number ."}/";

preg_match_all($pattern_pre50,$workstr,$matches);
         $temp=$matches[0][0];

if ((check_last($temp)==1)and(check_en_num($temp)==1))  //  ji shu and chinese
            {       
                   $hang_zifu_shortone=$hang_zifu_number-1;

$pattern_replace="/^.{".$hang_zifu_shortone ."}/";

$replacement='';
                   $arr_phone[$i]=preg_replace($pattern_replace,$replacement,$workstr);
                       // 前面49个处理完!

$temp=short_one($temp);  //从50个中减去一个.

}

else   
            {

$pattern_replace="/^.{".$hang_zifu_number ."}/";

$replacement='';
              $arr_phone[$i]=preg_replace($pattern_replace,$replacement,$workstr);

}

$message=$message . $temp."<br>";

}

if (($first_line==1)and(strlen($arr_phone[$i])<$hang_zifu_number))
     {

$first_line=0;
       $temp_addblank=$arr_phone[$i];

$temp_addblank=add_blankto50($temp_addblank,$hang_zifu_number);

$message=$temp_addblank ."<br>";

}

else

$message=$message .$arr_phone[$i]."<br>";

}
return($message);

}

//$num1=strlen($test);
//echo $num1;
//echo $test;

//echo "<br>";
//$mes=add_blankto50($test);
//$num9=strlen($mes);
//echo $num9;
//$result=ip_question($test);
//computer_message($test);
//echo $result;

function checkpass($passwd,$action,$db_name,$table_name_control,$id_link)
    {

if ($action="delete")
        $str_sql="select value from $table_name_control where leibie='delete';";
     else if ($action="huifu")
        $str_sql="select value from $table_name_control where leibie='huifu';";
     else  
        echo "error";

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

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

$record= mysql_fetch_object($result);
    // echo $record->value;
    // echo "<br>";
    // echo $passwd;
    // echo "<br>";
     if ($record->value==$passwd)
        return(1);
     else
        return(0);

}

//$msg=computer_message($test,$hang_zifu_number);

//echo $msg;

?>

【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】

(0)

相关推荐

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

    留言本的使用说明 哈哈,很开心,做了好些时候的留言本总算可以发表了...  阿,希望能大家喜欢,不喜欢也不要紧,但是,一定有不喜欢的理由,,烦请一定告知!!!  谢谢!!! 本留言本从一开始的目标就是""挑战最棒的留言本""!!!我想"没有做不到的,只是看有没有必要"!!! 如果你的建议很好,我一定做到你的要求为止,我的目标:"做一个很棒的程序员". 此留言本的优点和缺点:  -------------------------

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

    <html> <title>留言本</title> <body bgcolor=white> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style type="text/css"> <!-- td {  font-family: "宋体&

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

    config.php文件 <?php  // 你的用户名和密码,以及数据库名,和表名,在这里一次定义!!! // 由于怕用户名和密码被别人通过浏览器看到,所以用了php的扩展名,这样通过浏览就看不到了!!!. $username='your_name';          //用户名      $password='your_password';          //密码 $hostname='localhost';              //主机名,一般都为localhost $db_n

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

    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 &qu

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

    action.php文件 <?php require('config.php');   $action=$arr_request['action']; $key_liuyan=$arr_request['key_liuyan']; if (!isset($PHP_AUTH_USER))    {     Header('WWW-Authenticate:Basic realm="管理留言"');     Header('HTTP/1.0 401 Unauthorized');  

  • js 实现的可折叠留言板(附源码下载)

    javaScript 代码如下: $(document).ready(function(){ $(".message_list .message_body:gt(0)").hide(); $(".message_list li:gt(4)").hide(); $(".message_head").click(function(){ $(this).next(".message_body").slideToggle(500) r

  • JS实现快速的导航下拉菜单动画效果附源码下载

    这是一个带变形动画特效的下拉导航菜单特效.该导航菜单在菜单项之间切换时,下拉菜单会快速的根据菜单内容的大小来动态变形,显示合适的下拉菜单大小,效果非常棒. 查看演示     下载源码 HTML 该导航菜单的HTML结构如下: <header class="cd-morph-dropdown"> <a href="#0" class="nav-trigger">Open Nav<span aria-hidden=&qu

  • 找到一款不错的基于AJAX留言板源码(PHP版、ASP版)提供下载了

    一.说明 大家好,现将51AJAX的留言板源码放出,有PHP和ASP两个版本. PHP版基于AJAX+PHP4.3+MySql 4.1+Dojo 0.3,ASP版基于AJAX+ASP+Access+Dojo 0.3. 压缩包中已包含了Dojo框架的主文件dojo.js,无需再下载Dojo包: 要下载完整的Dojo框架,请点击这里下载:http://download.dojotoolkit.org/release-0.3.1/dojo-0.3.1-ajax.zip. 关于Dojo的更多信息,请点击

  • Zend Framework实现具有基本功能的留言本(附demo源码下载)

    本文实例讲述了Zend Framework实现具有基本功能的留言本.分享给大家供大家参考,具体如下: 一个留言本...具有的基本功能就是.1.发表留言. 2.回复留言.3.管理留言(修改,删除等操作). 我这里只是写了基本的操作,比如加留言验证码.页面的美化什么的我都 没有做.我只是给大家一个思想..很多东西要靠我们自己去学了. 另一个就是我的留言用了AJAX.就是你一发表.数据就会在页面显示..不过大家要了解Jquery的AJAX的用法..我相信大部分人都会这个JS类库吧. 要是不懂也没关系.

  • 通过V8源码看一个关于JS数组排序的诡异问题

    前言 前几天一个朋友在微信里面问我一个关于 JS 数组排序的问题.通过该问题发现了一些之前没发现的内容,下面话不多少了,来一起看看详细的介绍吧. 原始数组如下: var data = [ {value: 4}, {value: 2}, {value: undefined}, {value: undefined}, {value: 1}, {value: undefined}, {value: undefined}, {value: 7}, {value: undefined}, {value:

随机推荐