NPC copy data processing program_Supplement_PHP tutorial

WBOY
Release: 2016-07-21 16:05:40
Original
810 people have browsed it

Note:
1. The processing of NPC copy materials is a set of programs I use myself. Because I saw discussions about full-text retrieval on the forum, I published it to the public regardless of my rookie level in programming.
2. Full-text CD-ROM copies of Renmin University should be available in all university libraries.
######config.php3
$hostname = "localhost";
$dbusername = "";
$dbname='';
$ dbpassword = "";

function indexfile($index_file,$index_title,$index_describe=""){
global $added;
if($index_file==""){
$index_file="indextemp.html";
}
elseif(file_exists($index_file)){
$added=1;
copy($index_file,$index_file.".bak");
}
$fp_i=fopen($index_file,'w+');
fputs($fp_i, "$index_titlern");

fputs($fp_i, "

$index_title
rn");
//$dte_created=date('Y-m-d H: i:s');
fputs($fp_i, "$index_describe");
//Query date: $dte_createdrn");
//fputs($fp_i,"rn");
return $fp_i;
}

function mysql_error_exit($msg ) {
$errno = mysql_errno();
$error = mysql_error();
echo 'Database error';
echo $msg;
echo "
Error: ($errno) $error
";
echo '";
echo "
";
echo "
";
echo"
";
echo $msg."
";
echo "
Please write to xueroom@263.net and contact the administrator.";
          echo"
返回 ";
          echo '';
      exit -1;
}
function xueroom_message($msg) {
    echo '';
    echo '';
    echo '
';
    echo "$msg";
    echo '
';
  }

?>

#################### 数据库结构:
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)
);

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/315641.htmlTechArticle说明: 1、人大复印资料的处理是本人自己使用的一套程序,因为看到论坛上有关于全文检索的讨论所以就不顾编程水平的菜鸟级差,也将其...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template