网页功能: 加入收藏 设为首页 网站搜索  
人大复印资料处理程序_补充篇
发表日期:2004-07-23作者:[转贴] 出处:  

说明:
1、人大复印资料的处理是本人自己使用的一套程序,因为看到论坛上有关于全文检索的讨论所以就不顾编程水平的菜鸟级差,也将其公布于公。
2、人大复印全文光盘资料在各大学图书馆应该可以取得。
######config.php3
<?
$hostname = "localhost";
$dbusername = "";
$dbname=';
$dbpassword = "";

function indexfile($index_file,$index_title,$index_describe=""){
  global $added;
if($index_file==""){
    $index_file="index emp.html";
    }
elseif(file_exists($index_file)){
    $added=1;
    copy($index_file,$index_file.".bak");
   }
$fp_i=fopen($index_file,'w+');
fputs($fp_i, "<html><head><title>$index_title</title></head><body>rn");
  
fputs($fp_i, "<h5>$index_title</h5>rn");
//$dte_created=date('Y-m-d H:i:s');
fputs($fp_i, "<font color='Maroon' face='楷体' size=1>$index_describe");
//查询日期:$dte_created</font><hr>rn");
//fputs($fp_i,"<table>rn");
  return $fp_i;
}

function mysql_error_exit($msg) {
      $errno = mysql_errno();
      $error = mysql_error();
      echo '<html><head><title>数据库错误</title></head><body>';
      echo $msg;
      echo "<br>错误: ($errno) $error<br>";
      echo '</body></html>';
        exit();
         
  }
function xueroom_error_exit($msg,$page) {
    echo "<HTML><HEAD><TITLE>严重错误 </TITLE></HEAD>";
    echo "<BODY><table align=center cellpadding=3 cellspacing=0 width=420 style="border-style:outset; border-bottom-width:thin; border-left-width:thin;border-right-width:thin;border-top-width:thin; border-color:#fefefe;">";
    echo "<TH colspan=2 bgcolor=726cc5>";
    echo"<font color=white face=Arial,Helvetica size=2><CENTER>";
          echo $msg."<BR>";
          echo "<TR><TD align=center>请致信xueroom@263.net,与管理员联系。";
          echo"<BR><TR><TD align=center><A HREF = ".$page.">返回 </A>";
          echo '</body></html>';
      exit -1;
}
function xueroom_message($msg) {
    echo '<table>';
    echo '<tr><td>';
    echo "$msg";
    echo '</td></tr>';
    echo '</table>';
  }

?>

#################### 数据库结构:
CREATE TABLE artical (
   artical_id int(6) NOT NULL auto_increment,
   resource_id varchar(10) NOT NULL,
   origin_periodical varchar(60) binary NOT NULL,
   date_pub datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
   artical_author varchar(50) binary NOT NULL,
   artical_title varchar(100) binary NOT NULL,
   artical_data longblob NOT NULL,
   artical_type varchar(6),
   artical__size varchar(10),
   date_reprinted datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
   read_count int(10) DEFAULT '0' NOT NULL,
   catalog tinyint(4) unsigned DEFAULT '0' NOT NULL,
   PRIMARY KEY (artical_id),
   KEY artical_title (artical_title),
   KEY artical_author (artical_author),
   KEY origin_periodical (origin_periodical),
   KEY catalog (catalog),
   KEY resource_id (resource_id)
);


我来说两句】 【加入收藏】 【返加顶部】 【打印本页】 【关闭窗口
中搜索 人大复印资料处理程序_补充篇
本类热点文章
  用PHP验证邮箱是否真实有效
  PHP5的变化与PHP6展望
  用户IP、浏览器、操作系统
  oracle资料库函式库
  oracle资料库函式库
  基于PHP的聊天室(二)
  基于PHP的聊天室(二)
  php调用mysql存储过程和函数的方法
  正则表达式在网络编程中的运用
  专家预言:PHP将比Java更受欢迎
  高效的中文字符串截取函数
  高效的中文字符串截取函数
最新分类信息我要发布 
最新招聘信息

关于我们 / 合作推广 / 给我留言 / 版权举报 / 意见建议 / 广告投放  
Copyright ©2003-2024 Lihuasoft.net webmaster(at)lihuasoft.net
网站编程QQ群   京ICP备05001064号 页面生成时间:0.01121