首页 > 作文

PHP+MYSQL的文章管理系统(一)

更新时间:2023-04-06 05:55:18 阅读: 评论:0

###############################################

此篇文章属原创,如有引用,请标明作者信息。

email: leo_cdp@yeah.net

http://www.cfeng.net/

本文代码任意转载,使用请保留此声明

###############################################

去年写了个文本管理总觉得有些不爽再加上申请了主机所以写个php+mysql的对文章进行管理测试期间

受到广大网友的支持现将代码公布

功能说明:

文章的基本操作:添加,修改,锁定,解锁,推荐,删除等待

并有强大功能的搜索,评论,推荐给朋友等功能,并对安全性进行着重加强,漂亮的界面人性化的设计。

主要文件列表:

tup.php安装程序,运行后即可使用本系统!

index.php显示

manager.php添加,管理文章。

change.php对已存在文章的操作。

edit_article.php 文章修改

commend.php推荐文章给朋友。

read_article.php 文章阅读。

ping.php发表文章评论。

arch.php文章搜索

type_manager.php类型管理

login.php管理员登陆。

config.php主要配置文件

func.php函数文件

footer.inc,header.inc,nav.inc包含文件。

list.txt类型列表

以及其它一些周边程序

管理系统演示地址:

http://www.cfeng.net/article/

########################config.php 主要配置文件##########################

<?

$host=”localhost”;#数据库主机

$databa_usn=”cfeng.net”;##数据库用户

$databa_pwd=”cfeng.net”;##数据库密码

$databa=”cfeng.net”;##数据库

$table=”cfeng.net”;##要存放文章的表

$ping_tab=”ping_tab1″;##存放评论的表

$admin_usn=”leo”;##管理员用户名

$admin_pwd=”leo”;##管理员密码

$admin_mail=”leo_cdp@yeah.net”;##管理员信箱

$pagenum=”20″;##每页显示文章数

$ss=md5($admin_usn.$admin_pwd);##登陆认证采用md5生成

?>

#####################func.php函数文件 ###################################

<?

require “./inc/config.php”;

function mscon()##数据库链接

{

global $host,$databa_usn,$databa_pwd;

@mysql_connect(“$host”,”$databa_usn”,”$databa_pwd”) or die(“对不起,数据库连接错误!请稍候再来,或与管理员联系”);

}

function check_login()

{global $ss;

if(!ssion_is_registered(“ss_0230a09a07cab1df8112d00b1f9a9719”))

{

if($ss_0230a09a07cab1df8112d00b1f9a9719!=$ss)

{

redir(“login.php”);

exit;

}

}

}

function redir($addr)

{

header(“location:$addr”);

}

function add_article()##本系统实行宽进严出所以添加文章部份显得略为简单!

{

global $databa,$table,$title,$cont,$type,$html;

$dat=date(y年m月d日);

$title=htmlspecialchars($title);

$query=”inrt into $table(title,cont,type,time,html) values(‘$title’,’$cont’,’$type’,’$dat’,’春考报名$html’)”;

$res=mysql_db_query(“$databa”,$query);

if(!$res)

echo mysql_error();

}

function add_hits($id)##添加浏览次数!

{

global $databa,$table;

$query=”update $table t hits=hits+1 where id=$id”;

$res=mysql_db_query(“$databa”,$query);

}

function add_comm($id)##把本文加为推荐文章

{

global $databa,$table;

$query=”update $table t comm=1 where id=$id”;

$res=mysql_db_query(“$databa”,$query);

}

function un_comm($id)##清除推荐!

{

global $databa,$table;

$query=”update $table t comm=’0′ where id=$id”;

$res=mysql_db_query(“$dacommunicationstaba”,$query);

}

function add_lock($id)##锁定文章

{

global $databa,$table;

$query=”update $table t locked=’1′ where id=$id”;

$res=mysql_db_query(“$databa”,$query);

}

function un_lock($id)##清除锁定!

{

global $databa,$table;

$query=”update $table t locked=0 where id=$id”;

$res=mysql_db_query(“$databaR英语的英语怎么读21;,$query);

}

function add_p_num($id)##添加评论次数!

{

global $databa,$table;

$query=自立”update $table t p_num=p_num+1 where id=$id”;

$res=mysql_db_query(“$databa”,$query);

}

function add_del($id)##删除文章!

{

global $databa,$table;

$query=”delete from $table where id=’$id'”;

$res=mysql_db_query(“$databa”,$query);

}

########################tup.php 安装文件######################

<?

ssion_start();

require”./inc/func.php”;

check_login();

?>

<?

if($sub)

{

$file_cont=”<?\n #don’t edit thisfile u the tup.php\n”;

$file_cont.=”\$host=\”$host\”;#your databa rver address\n”;

$file_cont.=”\$databa_usn=\”$databa_usn\”;\n”;

$file_cont.=”\$databa_pwd=\”$databa_pwd\”;\n”;

$file_cont.=”\$databa=\”$databa\”;\n”;

$file_cont.=”\$table=\”$table\”;\n”;

$file_cont.=”\$ping_tab=\”$ping_tab\”;\n”;

$file_cont.=”\$admin_usn=\”$admin_usn\”;\n”;

$file_cont.=”\$admin_pwd=\”$admin_pwd\”;\n”;

$file_cont.=”\$admin_mail=\”$admin_mail\”;\n”;

$file_cont.=”\$pagenum=\”$pagenum\”;\n”;

$file_cont.=”\$ss=md5(\$admin_usn.\$admin_pwd);\n”;

$file_cont.=”\n”;

$file_cont.=”?>”;

$fp=fopen(“./inc/config.php”,”w”);

if(fputs($fp,$file_cont))

echo “配置完成正检测各选项的正确性<br>”;

el echo “文件写入错误,请检测文件所在目录的权限<br>”;

fclo($fp);

echo “正在检测数据连接……….” ;

if(@mysql_connect(“$host”,”$databa_usn”,”$databa_pwd”))

{

echo“成功!<br>” ;

$query=”create table $table(

id int(4) not null auto_increment,

title varchar(55) not null,

cont text not null,

time varchar(14) not null,

type varchar(20) not null,

comm int(1) default ‘0’ not null,

p_num int(2) default ‘0’ not null,

locked int(1) default ‘0’ not null,

hits int(4) default ‘0’ not null,

html int(1) default ‘1’ not null,

primary key (id),

unique id (id),

key id_2 (id)

) ” ;

if(mysql_db_query($databa,$query))

echo”数据库 $table 建立成功<br>”.mysql_error();

el

echo”数据库 $table 建立失败<br>”;

$query=”create table $ping_tab (

id int(4) not null auto_increment,

p_id int(4) default ‘0’ not null,

name varchar(50) not null,

mail varchar(200) not null,

p_cont text not null,

time datetime default ‘0000-00-00 00:00:00’ not null,

ip varchar(15) not null,

primary key (id),

unique id (id),

key id_2 (id)

)”;

if(mysql_db_query($databa,$query))

{

echo”用户评论数据库 $ping_tab 建立成功<br>恭喜,文章管理系统安装成功!请<a href=login.php>这边走</a>进行基本设置!<br>”;

$fp=fopen(“tup.php”,”r”);

$file_cont=fread($fp,filesize(“tup.php”));

$file_cont=”<? \nssion_start();\nrequire\”./inc/func.php\”;\n check_login();\n?>\n”.$file_cont;

$fp=fopen(“tup.php”,”w”);

fputs($fp,$file_cont);

fclo($fp);

}

el

echo”用户评论数据库$ping_tab建立失败<br>”;

}

el

echo “数据库连接失败!请检测你用户名密码的正确性!<br>”;

exit();

}

require “./inc/header.inc”;

?>

<script language=”javascript”>

function db_pwd()

{

var theresult = true;

var elem4 = null;

if (document.forms[0].elements[2].value == “” || document.forms[0].elements[2].value!=document.forms[0].elements[3].value)

{

alert(“您两次输入的数据库密码不一致,或者为空!”);

document.forms[0].elements[2].value=””;

document.forms[0].elements[3].value=””;

theresult = fal;

}

return theresult;

}

function admin_pwd()

{

var theresult = true;

var elem4 = null;

if (document.forms[0].elements[8].value == “” || document.forms[0].elements[8].value!=document.forms[0].elements[9].value)

{

alert(“您两次输入的管理员密码不一致,或者为空!”);

document.forms[0].elements[8].value=””;

document.forms[0].elements[9].value=””;

theresult = fal;

}

return theresult;

}

function go()

{

var theresult=true;

theresult =db_pwd()&&admin_pwd();

return theresult;

}

</script>

</head>

<body bgcolor=”#ffffff”>

<? require “./inc/nav.inc”;?>

<form name=”form1″ method=”post” action=”<? echo $php_lf; ?>” onsubmit=”return go()”;>

<table border=”0″ cellspacing=”0″ cellpadding=”0″ align=”center” style=text-align:left;>

<tr>

<td colspan=”3″>

<div align=”center”>蓝狐文章管理安装程序<br>

(请正确填写以下内容否则程序将无法使用)</div>

</td>

</tr>

<tr>

<td>数据库服务器:</td>

<td colspan=”2″>

<input type=”text” name=”host” value=”localhost” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>数据库用户名: </td>

<td colspan=”2″>

<input type=”text” name=”databa_usn” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>数据库用户密码:</td>

<td colspan=”2″>

<input type=”password” name=”databa_pwd” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>数据库密码确认:</td>

<td colspan=”2″>

<input type=”password” name=”databa_pwd2″ class=”border” size=”30″>

</td>

</tr>

<tr>

<td>数据库名:</td>

<td colspan=”2″>

<input type=”text” name=”databa” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>存放文章的表:</td>

<td colspan=”2″>

<input type=”text” name=”table” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>存放评论的表:</td>

<td colspan=”2″>

<input type=”text” name=”ping_tab” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>管理员用户名:</td>

<td colspan=”2″>

<input type=”text” name=”admin_usn” class=”border” size=”共和国勋章获得者;30″>

</td>

</tr>

<tr>

<td>管理员密码:</td>

<td colspan=”2″>

<input type=”password” name=”admin_pwd” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>管理员密码确认:</td>

<td colspan=”2″>

<input type=”password” name=”admin_pwd2″ class=”border” size=”30″>

</td>

</tr>

<tr>

<td>管理员邮件地址:</td>

<td colspan=”2″>

<input type=”text” name=”admin_mail” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>每页显示文章数:</td>

<td colspan=”2″>

<input type=”text” name=”pagenum” class=”border” size=”30″>

</td>

</tr>

<tr>

<td>

<div align=”center”><br>

</div>

</td>

<td>

<div align=”left”><br>

<input type=”submit” name=”sub” value=”submit” class=”border”>



<input type=”ret” name=”ret” value=”ret” class=”border”>

</div>

</td>

</tr>

</table>

<p> </p>

</form>

<?require “./inc/footer.inc”;?>

本文发布于:2023-04-06 05:55:15,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/388d919125d94169fcffcb73a8026648.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP+MYSQL的文章管理系统(一).doc

本文 PDF 下载地址:PHP+MYSQL的文章管理系统(一).pdf

标签:数据库   文章   管理员   密码
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图