Table of Contents
新闻列表
%title%
Home php教程 php手册 PHP页面静态化学习笔记之五:简易新闻系统v1.1

PHP页面静态化学习笔记之五:简易新闻系统v1.1

Jun 06, 2016 pm 07:48 PM
php study news notes system static page

这是本人根据自己学习PHP技术页面静态化的过程所写的学习笔记,希望能够对大家有所帮助。 1、基本思想 (1)当我们添加或者更新新闻的时候,同步的创建或更新html页面,解决实时性问题,将生成的html文件的路径放在数据库; (2)设计一个模版文件,通过模版

这是本人根据自己学习PHP技术页面静态化的过程所写的学习笔记,希望能够对大家有所帮助。


1、基本思想

(1)当我们添加或者更新新闻的时候,同步的创建或更新html页面,解决实时性问题,将生成的html文件的路径放在数据库;

(2)设计一个模版文件,通过模版创建静态页面;

(3)以后每次直接访问html静态页面;

2、数据库沿用上面的数据库结构,数据最好清空

3、代码

news_list.php(新闻列表页面)

<?php //新闻列表
    //查询数据库,获取信息=>SqlHelper.class.php

    $conn = mysql_connect("localhost", "root", "root");
    if (!$conn) {
        die("连接失败");
    }
    mysql_select_db("static_pages_news", $conn);
    mysql_query("set names utf8");
    
    $sql = "select * from news order by id";
    $res = mysql_query($sql);
    
	header("content-type:text/html;charset=utf-8");
    echo "<h1 id="新闻列表">新闻列表</h1>";
    echo "<a href="add_news.html">添加新闻</a><hr>";
    echo "
Copy after login
"; echo ""; while ($row = mysql_fetch_assoc($res)) { echo ""; } echo "
id 标题 查看新闻 修改新闻
{$row['id']} {$row['title']} 查看详情 修改详情
"; mysql_free_result($res); mysql_close($conn); ?>
add_news.html(添加新闻页面)


	
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<title>添加新闻</title>
	
	
		
Copy after login
新闻标题
新闻内容

update_newsui.php(修改新闻页面)

<?php //接受要修改的新闻的ID
    $id = $_GET['id'];
    
    //通过id从数据库中获取新闻信息
    $conn = mysql_connect("localhost", "root", "root");
    if (!$conn) {
        die("连接失败");
    }
    mysql_select_db("static_pages_news", $conn);
    mysql_query("set names utf8");
    
    $sql = "select * from news where id = $id";
    $res = mysql_query($sql);
    
    if ($row = mysql_fetch_assoc($res)) {
        echo "<form action='newsAction.php' method='post'>";
        echo "<input type="hidden" name="oper" value="update">";
        echo "<input type="text" name="id" value="{$row['id']}" readonly><br>";
        echo "<input type="text" name="title" value="{$row['title']}"><br>";
        echo "<textarea cols="50" rows="10" name="content">{$row['content']}</textarea><br>";
        echo "<input type="submit" value="修改">";
        echo "<input type="reset" value="重置"><br>";
        echo "
Copy after login
"; }else { echo "您所查看的新闻不存在"; } ?>
newsAction.php(添加、修改新闻请求处理页面)

<?php //处理添加、修改、删除新闻请求
    //接收一下操作类型
    $oper = $_REQUEST['oper'];
    //接受title和content
    $title = $_POST['title'];
    $content = $_POST['content'];
    
    //检查存放静态页面的文件夹是否存在,若不存在则创建
    if (!file_exists("./newsfile/")) {
        mkdir("newsfile");
    }
    
    //打开数据库
    $conn = mysql_connect("localhost", "root", "root");
    if (!$conn) {
        die("连接失败");
    }
    mysql_select_db("static_pages_news", $conn);
    mysql_query("set names utf8");
    
    //根据接受的参数来确定操作
    if ($oper == 'add') {
        //把数据放入数据库,同时创建静态页面
        //添加到数据库中
        //开始事务
        mysql_query("BEGIN");
        $sql = "insert into news(title, content) values('$title', '$content')";
        if (mysql_query($sql)) {
            //获取刚刚插入数据的ID号
            $id = mysql_insert_id();
            //构建文件名
            $html_filename = "newsfile/news_id". $id .".html";
            //创建HTML文件
            createHTML($html_filename, $title, $content);
            //将静态页面的路径放入数据库
            $sql = "update news set filename='$html_filename' where id = '$id'";
            if (mysql_query($sql)) {
                //事务提交
                mysql_query("COMMIT");
                echo "添加到数据库并成功创建html文件<a href='news_list.php'>返回列表";
            }else { 
                //事务回滚
                mysql_query("ROLLBACK");
            }
            header("Location:news_list.php");
        }else {
            //事务回滚
            mysql_query("ROLLBACK");
        }
    }else if ($oper == 'update') {
        //接收修改的id
        $id = $_POST['id'];
        //开始事务
        mysql_query("BEGIN");
        $sql = "update news set title='$title', content='$content' where id=$id";
        if (mysql_query($sql)) {
            //修改数据库成功
            $html_filename = "newsfile/news_id". $id .".html";
            unlink($html_filename);
            //创建HTML文件
            createHTML($html_filename, $title, $content);
            //事务提交
            mysql_query("COMMIT");
            echo "更新到数据库并重新创建html文件<a href="news_list.php">返回列表</a>";
        }
    }
    //关闭数据库
    mysql_close($conn);

/**
 * 替换函数
 */
function replace($row, $title, $content) {
    $row = str_replace("%title%", $title, $row);
    $row = str_replace("%content%", $content, $row);
    return $row;
}

/**
 * 创建HTML文件
 */
function createHTML($file, $title, $content) {
    //创建HTML文件
    $fp_tmp = fopen("template.tpl", "r");
    $fp_html_file = fopen($file, "w");
    //逐行读取模版,替换内容,写入静态页面
    while (!feof($fp_tmp)) {
        $row = fgets($fp_tmp);
        //替换内容
        $new_row = replace($row, $title, $content);
        //把替换后的内容写进静态页面
        fputs($fp_html_file, $new_row);
    }
    //关闭文件
    fclose($fp_tmp);
    fclose($fp_html_file);
}
?>
Copy after login

template.tpl(新闻展示页面的模版)

<!-- 这是一个模版文件,根据你希望显示的样式来设计 -->


<!--%title%是一个占位符-->
<title>%title%</title>
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">


<h1 id="title">%title%</h1>
<hr>
<pre class="brush:php;toolbar:false">%content%
Copy after login
<a href="../news_list.php">返回列表</a>
Copy after login


Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles