search
HomeBackend DevelopmentPHP TutorialDetailed explanation of operating MySQL database with PHP (4)

新闻内容模块

  所涉及的内容

1. 新闻内容表的设计
2. 新闻列表的分页(即每页显示固定条数的新闻)
3. 显示新闻的内容(点击“新闻标题”,跳转到新闻内容页面(news_content.php)显示新闻具体内容)
4. 新闻的添加(点击“添加新闻”按钮,跳转到新闻添加页面(news_add.php))
5. 新闻的删除(点击“删除”,跳转到新闻删除页面(news_del.php))
6. 新闻的修改(点击“修改”,跳转到新闻修改页面(news_edit.php))

1. 新闻内容表

Detailed explanation of operating MySQL database with PHP (4)

字段名 解释
cat 分类
title 标题
author 作者
source 来源
keywords 网页关键字
description 描述
orderby 排序
content 内容
hits 点击率
addate 发布时间

2. 显示新闻列表 manage.php

该页面实现

新闻列表的分页

包含功能

1.显示新闻的内容(news_content.php)
 2.新闻的添加(news_add.php)
 3.新闻的删除(news_del.php)
 4.新闻的修改(news_edit.php)

分页原理

变量表示 解释
总记录数 $records mysql_num_rows()
每页显示显示页数 $pagesize 用户定义
总页数 $pages $records / $pagesize
当前页 $page 用户选择

  函数ps

mysql_num_rows() 函数返回结果集中行的数目。

  分页的SQL语句

SELECT * FROM news LIMIT \$startrow,\$pagesize;
页数 表示
第一页 $page=1 LIMIT 0,10
第二页 $page=2 LIMIT 10,10
第三页 $page=3 LIMIT 20,10
…… ……

  可以总结出

$startrow = ($page - 1) * $pagesize;

新闻列表页面(manage.php)

<!--manage.php-->
<?php
//包含连接MySQL的文件include "conn.php";
//分页的相关变量$pagesize = 5; 
//每页显示的新闻条数
//获取地址栏中传递的page参数,确定当前页,当前行(所有记录中的)
if(empty($_GET[&#39;page&#39;])){    $page = 1; //默认为第一页
    $startrow = 0;
}else{    $page = (int)$_GET[&#39;page&#39;];      
//当前页数
    $startrow = ($page-1)*$pagesize;    //当前行数}//构建查询的SQL语句
    $sql = "SELECT * FROM 007_news"; 

//执行SQL语句,返回的是所有记录的结果集$result = mysql_query($sql);//总记录数和总页数
$records = mysql_num_rows($result);$pages = ceil($records / $pagesize);//构建分页的SQL语句
$sql = "SELECT * FROM 007_news ORDER BY orderby ASC,id DESC LIMIT $startrow,$pagesize";
//执行SQL语句,返回的是结果集(10条记录)$result = mysql_query($sql);?>
<!DOCTYPE html>
<html xmlns=" 
<head><meta charset=UTF-8>
<title>管理新闻列表</title>
<script type="text/javascript">
function confirmDel(id){
    //询问是否删除记录
    if(window.confirm("你确定要删除吗?")){        //跳转到PHP的删除页面 del.php
        location.href = "news_del.php?id="+id;
    }
}
</script>
</head>
<body>
<p style="padding:5px;">
<input type="button" value="添加新闻" onClick="javascript:location.href=&#39;news_add.php&#39;"/></p>
<table width="70%" border="1" bordercolor="#CCC" rules="all" cellpadding="5" align="center">
    <tr>
        <th>编号</th>
        <th>新闻标题</th>
        <th>作者</th>
        <th>来源</th>
        <th>排序</th>
        <th>点击率</th>
        <th>发布时间</th>
        <th>操作选项</th>
    </tr>
    <?php
        while($arr = mysql_fetch_assoc($result)){    ?>
    <tr>
        <td><?php echo $arr[&#39;id&#39;]?></td>
        <td>
            <a target="_blank" href="news_content.php?id=<?php echo $arr[&#39;id&#39;]?>">
                <?php echo $arr[&#39;title&#39;]?>
            </a>        
        </td>
        <td><?php echo $arr[&#39;author&#39;]?></td>
        <td><?php echo $arr[&#39;source&#39;]?></td>
        <td><?php echo $arr[&#39;orderby&#39;]?></td>
        <td><?php echo $arr[&#39;hits&#39;]?></td>
        <td><?php echo date("Y-m-d H:i", $arr[&#39;addate&#39;])?></td>
        <td>
            <a href="news_edit.php?id=<?php echo $arr[&#39;id&#39;]?>">修改</a>
            <a href="javascript:void(0)" onClick="confirmDel(<?php echo $arr[&#39;id&#39;]?>)">删除</a>
        </td>
     </tr>
    <?php }?>
    <tr>
        <td colspan="8" align="center">
            <?php  
                $prev = $page-3;                
                $next = $page+3;                
                if($page < 4){ 
                    $prev = 1;                    
                    $next = 7;     //后面补齐
                }                
                if($page > $pages-3){                    
                $next = $pages;    
                    $prev = $pages-6;  //前面补齐
                }                for($i=$prev;$i<=$next;$i++){   //当前页页码号在中间,前后各3个页码号,显示7个页码号    

                    if($i == $page){//当前页,不加链接
                        echo "$i  ";
                    }else{                        echo "<a href=&#39;manage.php?page=$i&#39;>$i</a>  ";    
                    }
                }            ?>
        </td>
    </tr></table></body></html>

运行的效果

Detailed explanation of operating MySQL database with PHP (4)

3. 显示新闻内容 news_content.php

  点击新闻列表中某条新闻的标题,之后会跳转到该条新闻的详细内容页面(news_content.php)

<!--news_content.php-->
<?php
//**************************读取一条记录******************************
//包含连接数据库的文件
include "conn.php";
//获取地址栏传递过来的id值
$id = $_GET[&#39;id&#39;];
//构建更新点击率的SQL语句
$sql = "UPDATE 007_news SET hits=hits+1 WHERE id=$id";
mysql_query($sql);
//构建查询的SQL语句
$sql = "SELECT * FROM 007_news WHERE id=$id";
//执行SQL语句
$result = mysql_query($sql);
//取出唯一的一条记录
$arr = mysql_fetch_assoc($result);
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php echo $arr[&#39;title&#39;]?></title>
</head>

<body>
<table width="1000" cellpadding="5" align="center">
    <tr>
        <th><h2><?php echo $arr[&#39;title&#39;]?></h2></th>
    </tr>
    <tr>
        <td bgcolor="#ccc" align="center">
            作者:<?php echo $arr[&#39;author&#39;]?>    
            来源:<?php echo $arr[&#39;source&#39;]?>    
            点击率:<?php echo $arr[&#39;hits&#39;]?>次    
            发布时间:<?php echo date("Y-m-d H:i", $arr[&#39;addate&#39;])?>
        </td>
    </tr>
    <tr>
        <td><?php echo $arr[&#39;content&#39;]?></td>
    </tr>
</table>
</body>
</html>

运行效果

Detailed explanation of operating MySQL database with PHP (4)

4. 添加新闻

  在新闻列表页(manage.php)点击“添加新闻”,会跳转到“添加新闻”页面(news_add.php)。添加成功后,数据库中就添加了该条新增记录了,然后跳转到操作成功提示页面,5秒后,跳转到新闻列表页面(manage.php)。

添加新闻(news_add.php)

<!--news_add.php-->

<?php
//*****************************添加新闻********************************

//连接MySQL数据库
include "conn.php";

//判断表单是否提交
if(isset($_POST[&#39;ac&#39;]) && $_POST[&#39;ac&#39;]=="add"){

    //获取表单提交的数据
    $cat = $_POST[&#39;cat&#39;];
    $title = $_POST[&#39;title&#39;];
    $author = $_POST[&#39;author&#39;];
    $source = $_POST[&#39;source&#39;];
    $orderby = $_POST[&#39;orderby&#39;];
    $keywords = $_POST[&#39;keywords&#39;];
    $description = $_POST[&#39;description&#39;];
    $content = $_POST[&#39;content&#39;];
    $addate = time();

    //构建写入的SQL语句
    $sql = "INSERT INTO 007_news(cat,title,author,source,orderby,keywords,description,content,addate) VALUES($cat,&#39;$title&#39;,&#39;$author&#39;,&#39;$source&#39;,$orderby,&#39;$keywords&#39;,&#39;$description&#39;,&#39;$content&#39;,$addate)";

    //执行SQL语句
    if(mysql_query($sql)){

        //如果执行成功,则跳转到success.php页面
        $url = "manage.php";
        $message = urlencode("记录添加成功!");
        echo "<script>location.href=&#39;success.php?url=$url&message=$message&#39;</script>";
        exit();
    }

}
?>

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>添加新闻</title>

<!--引入编辑器文件和语言包-->
<script charset="utf-8" src="js/editor/kindeditor-min.js"></script>
<script charset="utf-8" src="js/editor/lang/zh_CN.js"></script>

<script>
//加入在线编辑器
var editor;
KindEditor.ready(function(K) {
    //在当前网页中,查找<textarea name = "content"></textarea>,并替换成kindeditor编辑器。
editor = K.create(&#39;textarea[name="content"]&#39;, {
        allowFileManager : true   //是否允许上传文件
    });
});
</script>

</head>

<body>
<form name="form1" method="post" action="">
<table width="800" border="1" rules="all" bordercolor="#ccc" cellpadding="5" align="center">
    <tr>
        <th colspan="2">添加新闻</th>
    </tr>
    <tr>
        <td width="80" align="center">新闻类型:</td>
        <td>
            <select name="cat">
                <option value="1">新闻类型1</option>
                <option value="2">新闻类型2</option>
                <option value="3">新闻类型3</option>
                <option value="4">新闻类型4</option>
            </select>
        </td>
    </tr>
    <tr>
        <td align="right">新闻标题:</td>
        <td><input type="text" name="title" size="100"/></td>
    </tr>
    <tr>
        <td align="right">作者:</td>
        <td>
            <input type="text" name="author" value="admin" size="10"/>
            来源:<input type="text" name="source" value="default" size="40"/>
            排序:<input type="text" name="orderby" maxlength="2" value="50"/>
        </td>
    </tr>
    <tr>
        <td align="right">关键字:</td>
        <td><input type="text" name="keywords" size="100"/></td>
    </tr>
    <tr>
        <td align="right">描述:</td>
        <td><input type="text" name="description" size="100"></td>
    </tr>
    <tr>
        <td align="right">内容:</td>
        <td><textarea name="content" style="width:100%;height:240px;"></textarea></td>
    </tr>
    <tr>
        <td> </td>
        <td>
            <input type="submit" value="提交"/>
            <input type="hidden" name="ac" value="add"/>    <!--隐藏域,表单验证-->
            <input type="reset" value="重置"/>
        </td>
    </tr>
</table>
</form>
</body>
</html>

  代码PS

上述代码中引入了在线HTML编辑器:kindeditor 将editor文件直接“复制”到要引入文件的同级目录即可。
 在需要的编辑器的页面,引入如下文件:

<!--在代码中引入在线HTML编辑器:kindeditor-->

<script charset="utf-8" src="js/editor/kindeditor-min.js"></script>
<script charset="utf-8" src="js/editor/lang/zh_CN.js"></script>
<script>
//加入在线编辑器
var editor;
KindEditor.ready(function(K) {
    //在当前网页中,查找<textarea name = ‘content’></textarea>,并替换成kindeditor编辑器。
editor = K.create(&#39;textarea[name="content"]&#39;, {
        allowFileManager : true   //是否允许上传文件
    });
});
</script>
<textarea id="content" name="content" style="width:100%;height:300px; "></textarea>

运行效果

Detailed explanation of operating MySQL database with PHP (4)

5. 删除新闻

  在新闻列表页(manage.php)点击“删除”,出现确认删除的提示框,点击“确认”后,会跳转到新闻删除页面(news_del.php),对该条新闻进行删除,此后数据库中就没有该条记录了。删除成功后,跳转到操作成功提示页面,5秒后,跳转到新闻列表页面(manage.php)。

删除新闻(news_del.php)

<!--news_del.php-->
<?php
//**********************删除记录***********************
//包含连MySQL接数据库的文件conn.php
include "conn.php";

//获取地址栏传递的id参数,GET方式获取地址栏数据,POST获取表单数据
$id = (int)$_GET["id"];

//构建删除的SQL语句
$sql = "DELETE FROM 007_news WHERE id=$id";

//执行SQL语句
if(mysql_query($sql))
{
    //如果执行成功,则跳转到success.php页面
    $url = "manage.php";
    $message = urlencode("id={$id}记录删除成功!");
    echo "<script>location.href=&#39;success.php?url=$url&message=$message&#39;</script>";
}else
{
    //如果执行失败,则跳转到error.php页面
    $message = urlencode("记录删除失败!");
    header("location:error.php?message=$message");
}
?>

6. 修改新闻

  在新闻列表页(manage.php)点击修改,会跳转到新闻修改页面(news_edit.php),首先页面会读取指定id的数据,并写入对应的表单输入框中,对照原始信息作修改,点击修改后,数据库的记录也就更新了。修改成功后,跳转到操作成功提示页面,5秒后,跳转到新闻列表页面(manage.php)。

修改新闻(news_edit.php)

<!--news_edit.php-->
<?php
//*****************************修改新闻********************************

//连接MySQL数据库
include "conn.php";

//判断表单是否提交
if(isset($_POST[&#39;ac&#39;]) && $_POST[&#39;ac&#39;]=="add"){

    //获取表单提交的数据
    $cat = $_POST[&#39;cat&#39;];
    $title = $_POST[&#39;title&#39;];
    $author = $_POST[&#39;author&#39;];
    $source = $_POST[&#39;source&#39;];
    $orderby = $_POST[&#39;orderby&#39;];
    $keywords = $_POST[&#39;keywords&#39;];
    $description = $_POST[&#39;description&#39;];
    $content = $_POST[&#39;content&#39;];

    //通过表单提交用POST方式,获得隐藏域提交过来的id值
    //这里不直接通过GET方式来获取id值,而是用隐藏域来获得id,安全性更高,而且地址栏的值可以改动
    $id = $_POST[&#39;id&#39;];  

    //构建要修改的SQL语句
    $sql = "UPDATE 007_news SET cat=$cat,title=&#39;$title&#39;,author=&#39;$author&#39;,source=&#39;$source&#39;,orderby=$orderby,keywords=&#39;$keywords&#39;,description=&#39;$description&#39;,content=&#39;$content&#39; WHERE id=$id";

    //执行SQL语句
    if(mysql_query($sql)){

        //如果执行成功,则跳转到success.php页面
        $url = "manage.php";
        $message = urlencode("记录修改成功!");
        echo "<script>location.href=&#39;success.php?url=$url&message=$message&#39;</script>";
        exit();
    }

}else{  //表单提交之前,应先显示数据库中的原始数据

    //获取地址栏传递的id值
    $id = $_GET[&#39;id&#39;];

    //构建查询的SQL语句
    $sql = "SELECT * FROM 007_news WHERE id=$id";

    //执行SQL语句
    $result = mysql_query($sql);

    //取出记录
    $arr = mysql_fetch_assoc($result);
}
?>

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>修改新闻</title>

<!--引入编辑器文件和语言包-->
<script charset="utf-8" src="js/editor/kindeditor-min.js"></script>
<script charset="utf-8" src="js/editor/lang/zh_CN.js"></script>

<script>
//加入在线编辑器
var editor;
KindEditor.ready(function(K) {
    //在当前网页中,查找<textarea name = "content"></textarea>,并替换成kindeditor编辑器。
editor = K.create(&#39;textarea[name="content"]&#39;, {
        allowFileManager : true   //是否允许上传文件
    });
});
</script>

</head>

<body>
<form name="form1" method="post" action="">
<table width="800" border="1" rules="all" bordercolor="#ccc" cellpadding="5" align="center">
    <tr>
        <th colspan="2">修改新闻</th>
    </tr>
    <tr>
        <td width="80" align="center">新闻类型:</td>
        <td>
            <select name="cat">
                <option value="1" <?php if($arr[&#39;cat&#39;]==1){echo &#39;selected=selected&#39;;}?> >公司新闻</option>
                <option value="2" <?php if($arr[&#39;cat&#39;]==2){echo &#39;selected=selected&#39;;}?> >行业新闻</option>
                <option value="3" <?php if($arr[&#39;cat&#39;]==3){echo &#39;selected=selected&#39;;}?> >疾病预防</option>
                <option value="4" <?php if($arr[&#39;cat&#39;]==4){echo &#39;selected=selected&#39;;}?> >帮助文档</option>
            </select>
        </td>
    </tr>
    <tr>
        <td align="right">新闻标题:</td>
        <td><input type="text" name="title" size="100" value="<?php echo $arr[&#39;title&#39;]?>"/></td>
    </tr>
    <tr>
        <td align="right">作者:</td>
        <td>
            <input type="text" name="author" value="<?php echo $arr[&#39;author&#39;]?>" size="10"/>
            来源:<input type="text" name="source" value="<?php echo $arr[&#39;source&#39;]?>" size="40"/>
            排序:<input type="text" name="orderby" maxlength="2" value="<?php echo $arr[&#39;orderby&#39;]?>"/>
        </td>
    </tr>
    <tr>
        <td align="right">关键字:</td>
        <td><input type="text" name="keywords" size="100" value="<?php echo $arr[&#39;keywords&#39;]?>"/></td>
    </tr>
    <tr>
        <td align="right">描述:</td>
        <td><input type="text" name="description" size="100" value="<?php echo $arr[&#39;desciption&#39;]?>"></td>
    </tr>
    <tr>
        <td align="right">内容:</td>
        <td><textarea name="content" style="width:100%;height:240px;"><?php echo $arr[&#39;content&#39;]?></textarea></td>
    </tr>
    <tr>
        <td> </td>
        <td>
            <input type="submit" value="修改"/>
            <input type="hidden" name="ac" value="add"/>    <!--隐藏域,表单验证-->
            <input type="hidden" name="id" value="<?php echo $id?>"/>  <!--隐藏域,用于传递通过GET方式获得的id值-->
            <input type="reset" value="重置"/>
        </td>
    </tr>
</table>
</form>
</body>
</html>

The above is the detailed content of Detailed explanation of operating MySQL database with PHP (4). For more information, please follow other related articles on the PHP Chinese website!

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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),