首页 > 开发 > PHP > 正文

人大复印资料处理程序_补充篇

2024-05-04 22:15:35
字体:
来源:转载
供稿:网友
说明:
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/temp.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>";
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表