这篇文章主要介绍了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