一、源码特点
PHP 校园新闻网站系统 是一套完善的web设计系统,对理解php编程开发语言有帮助,系统具有完整的源代码和数据库,系统主要采用B/S模式开发。
下载地址
https://download.csdn.net/download/qq_41221322/87999771https://download.csdn.net/download/qq_41221322/87999771
二、功能介绍
前台
系统首页
会员注册、登录
新闻浏览
新闻评论
后台
(1)用户管理:对用户信息进行添加、删除、修改和查看
(2)分类管理:对分类信息进行添加、删除、修改和查看
(3)新闻管理:对新闻信息进行添加、删除、修改和查看
(4)评论管理:对评论信息进行删除、修改和查看
主要代码:
include ('include/config.inc.php');
session_start();
$id = $_GET["id"];
if($id!="") {
$res = mysql_query("select * from content where id='$id'");
$rows = mysql_fetch_assoc($res);
$con = $rows['body'];
$browse = $rows['browse']+1;
$result = @mysql_query("UPDATE `content` SET `browse` = '$browse' WHERE `content`.`Id` ='$id'");
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title><?php echo $rows['title']." -- ".$siteName;?></title>
<link href="css/global.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<div id="wrap">
<!--头部开始-->
<?php
require("top.php");
?>
<!--header end-->
<!--menu end-->
<div class="clear"></div>
<!--导航 begin-->
<div id="breadcrumb">
<div><h1>您的位置:
<?php
echo "<a href='index.php'>$siteName</a>";
for ($i= count($cateArr)-1;$i>=0;$i--) {
echo " >> <a href='list.php?category=".$cateArr[$i][0]."'>".$cateArr[$i][1]."</a>";
}
?>
>> 正文</h1></div>
</div>
<!--正文开始-->
<div id="main">
<div id="left">
<div class="title">
<h1 class="colorText"><strong><?php echo $rows['title'];?></strong></h1>
<span> 作者:<?php echo $rows['author'];?> 来源:<?php echo $rows['from'];?> 发布时间:<?php echo $rows['posttime'];?> 人气指数: <?php echo $rows['browse'];?></span></div>
<div class="content">
<p><?php echo $rows['body'];?></p>
</div>
<!--评论开始-->
<div class="partner">
<h2>评论:</h2>
<div class="comment">
<?php
$res = @mysql_query("select * from comment where id='$id'");
$num_rows = @mysql_num_rows($res);
if($num_rows == 0) {
echo "<div class='msg'>当前没有评论记录</div>";
}else {
while ($row = mysql_fetch_assoc($res)) {
$ip = explode(".", $row['ip']);
$ip[3] = '*';
$ip = implode(".",$ip);
echo "<span>{$row['name']} $ip : {$row['comtime']} 发表</span> <br>
<div class='msg'>{$row['message']}</div>";
}
}
?>
</div>
<a=0>
<div class="sendmsg">
<script language="javacript" type="text/javascript">
function check_content() {
var title=document.sendcom.message.value;
if(title == '') {
alert("怎么也得说几句吧!");
return false;
}
}
</script>
<form name="sendcom" action="comment.php" method="POST">
<input name="id" type="hidden" value="<?php echo $id;?>">
<div class="textBox">
<h2>发表评论: </h2>
<textarea name="message"></textarea>
</div>
<div class="sendC">
留下你的大名:<input name="hidename" type="text" value="Guest" onfocus="if(this.value=='Guest') this.value='';" onblur="if(this.value=='') this.value='Guest';" />
<input name="submit" type="submit" value="发 表" onclick="return check_content()";/>
</div>
</form>
</div>
</div>
<!--评论 end-->
</div>
<!--右侧开始-->
<div id="right">
<?php
$query ="select * from category where Pid='$category'";
$res = @mysql_query($query);
$num_rows = @mysql_num_rows($res);
if ($num_rows != 0) {
echo<<<EHO
<div id="sidebar">
<div class="indexTitle">
<div class="left">
<span class="colorText">子分类导航</span>
</div>
<div class="right more"> </div>
</div>
<div class="contentList">
<ul>
EHO;
while ($rows = mysql_fetch_assoc($res)) {
echo "<li><img src='images/dir.gif' align='absmiddle' /> <a href='list.php?category=".$rows['Cid']."&action=1'>".$rows['name']."</a></li>";
}
echo "</ul></div></div>";
三、注意事项
1、管理员账号:admin密码:123456 数据库配置文件 data.php
2、开发环境为PHP APACHE,数据库为mysql5.0,使用php语言开发。 系统IE 需要支持flash
3、数据库文件名是phpxinwen.sql ,系统名称xinwen
4、系统首页地址:http://127.0.0.1/xinwen/
四系统实现