Home >php教程 >php手册 >PHP实现简单的新闻发布系统实例

PHP实现简单的新闻发布系统实例

WBOY
WBOYOriginal
2016-06-06 19:51:171148browse

这篇文章主要介绍了PHP实现简单的新闻发布系统,涉及php实现新闻发布系统的sql查询、插入、更新等完整操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP实现简单的新闻发布系统。分享给大家供大家参考。具体如下:

本人小白,一直在公司用模板和框架写PHP,发现有时候连基本的sql语句都忘记了,所以有空想把PHP基础复习下,巩固下。分页和搜索,,以及排序,还没写,后期继续更新...(代码修改:添加搜索和分页功能)

articlePublish.html:

Insert title here

发布新闻系统

标题:
内容:

articlePublishDo.php:

返回文章列表'; }else{ echo "发布失败"; echo '返回文章列表'; } mysql_close();//关闭数据库

articleList.php:

Insert title here

返回发布文章 = $page){ $currentPage = $page-1; }else{ $currentPage = $_GET['page']; } }else { $currentPage=1; } $start = ($currentPage-1)*$pageSize; $sql="select id,title,content from article where title like '%$keyword%' or content like '%$keyword%' limit $start,$pageSize"; //echo $sql; $re=mysql_query($sql);//执行sql语句 while($arr=mysql_fetch_assoc($re)){ ?>
编号 文章标题 文章内容 编辑文章
修改 删除
共页 |查到条记录 当前第页| 首页 |上一页 |下一页 |末页

articleEdit.php:

Insert title here

文章发布系统


标题:
内容:

返回文章列表 返回发布文章

articleUpdate.php:

Statement:
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