-
您的位置:首页 → 网页设计 → PHP实例 → 新闻分类录入、显示系统
新闻分类录入、显示系统
时间:2004/11/7 3:25:00来源:本站整理作者:蓝点我要评论(0)
-
本系统可以录入标题、内容、图片、相关软件,显示时会根据是否有有图片和相关软件来判断是否显示该项内容,打开页面显示的是最新的一片文章,点击目录会显示之前的文章。
建立channelimages和channelsoft目录,并把权限设为777。
*********************************
news表结构
*********************************
# Host: localhost Database : yourdb
# --------------------------------------------------------
#
# Table structure for table 'yourtable'
#
CREATE TABLE news(
id int(11) DEFAULT '0' NOT NULL auto_increment,
kind varchar(16),
title varchar(60),
content text,
pic varchar(30),
timer datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
soft varchar(30),
PRIMARY KEY (id),
KEY timer (timer)
);
*********************************
新闻录入文件:insert.htm
*********************************
新闻录入
*********************************
end of insert.htm
*********************************
*********************************
insert.php
*********************************
$day=date("md");
If($pic != "none"){
$picname=$day.$pic_name;
copy($pic,"channelimages/$picname");
unlink($pic);
}
If($soft!= "none"){
copy($soft,"channelsoft/$soft_name");
unlink($soft);
}
$dbh = mysql_connect('localhost','uesrname','passward');
mysql_select_db('yourtable');
$dat=date("Y-m-d h:i:s");
$query="insert into news(title,kind,content,pic,timer,soft) values('$title','$kind','$content','$picname',now(),'$soft_name')";
$res = mysql_query($query,$dbh);
$err = mysql_error();
if($err){echo $err;exit();}
echo "";
echo "
录入成功
";
?>
*********************************
end of insert.php
*********************************
*********************************
新闻显示文件:news.php
*********************************
显示类型1
$db=mysql_connect("localhost","username","passward");
mysql_select_db("yourtable",$db);
$result=mysql_query("select id,title from news where kind='类型1' order by timer desc");
for($a=0;$a<10;$a++)
{if(!($ahrow=mysql_fetch_row($result)))break;
$id=mysql_result($result,$a,"id");
$title=mysql_result($result,$a,"title");
echo "".$title."
";
}
if (!isset($id)) $id=mysql_result($result1,0,"id");
$result=mysql_query("select * from news where id=$id order by timer desc");
$rows=mysql_fetch_row($result);
echo "
";
print $rows[2];
echo "
$rows[5]";
if (strlen($rows[4])>0) echo "";
echo str_replace("\r","
",str_replace(" "," ",$rows[3]));
if (strlen($rows[6])>0) echo "
>>点击下载
";
?>
*********************************
end of news.php
*********************************
【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】
相关阅读
Windows错误代码大全 Windows错误代码查询激活windows有什么用Mac QQ和Windows QQ聊天记录怎么合并 Mac QQ和Windows QQ聊天记录Windows 10自动更新怎么关闭 如何关闭Windows 10自动更新windows 10 rs4快速预览版17017下载错误问题Win10秋季创意者更新16291更新了什么 win10 16291更新内容windows10秋季创意者更新时间 windows10秋季创意者更新内容kb3150513补丁更新了什么 Windows 10补丁kb3150513是什么
-
热门文章
没有查询到任何记录。
最新文章
我的php文件怎么打开_php运算符怎么写 php
如何生成静态页面的函数PHP生成图片缩略图PHP session常见问题集锦及解决办法PHP实现同步远程Mysql
人气排行
DEDE在文章列表文章没有缩略图的不显示图片php+mysq修改用户密码我的php文件怎么打开_如何打开php文件的办法FCKeditor的配置和使用方法使用dedecms建站教程PHP+Ajax实现分页技术图片存储与浏览一例Linux+Apache+PHP+MySQLPHP生成图片缩略图
查看所有0条评论>>