繁体中文
设为首页
加入收藏
当前位置:PHP技术首页 >> 文件处理 >> 一个个人网页自动化生成系统(3)

一个个人网页自动化生成系统(3)

2005-01-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:  单页生成,文件名:shengcheng.php

  单页生成,文件名:shengcheng.php

$db = mysql_connect("localhost", "root");

mysql_select_db("study",$db);

// 把文章写入数据库

$t = date("Y-m-d h:i:s");

$sql = "INSERT INTO wenzhang (timu,zuozhe,laiyuan,textt,riqi)

VALUES ('$timu','$zuozhe','$laiyuan','$textt','$t')";

$result = mysql_query($sql);

// 把计数器加一

$fdd=fopen("count.txt","r");

$cdd=fread($fdd,5);

$cdd++;

fclose($fdd);

$fdd=fopen("count.txt","w");

fwrite($fdd,$cdd);

fclose($fdd);

// 文章生成

$muoban1 = fopen("muoban1.txt","r");

$muoban2 = fopen("muoban2.txt","r");

$muoban3 = fopen("muoban3.txt","r");

$qita = "

作者:$zuozhe 来源:$laiyuan

时间:$t

";

$muoban4=fread($muoban1,1000);

$muoban5=fread($muoban2,1000);

$muoban6=fread($muoban3,1000);

fclose($muoban1);

fclose($muoban2);

fclose($muoban3);

$main="$muoban4 $timu $qita $muoban5 $textt $muoban6";

// 文章生成

$ttt=".html";

$n=$cdd.$ttt;

$f = fopen($n,"a");

fwrite($f,$main);

fclose($f);

print "

递交成功
";

?>



继续递交管理文件

责任编辑:admin
相关文章