찾다
php教程php手册PHP页面静态化学习笔记之五:简易新闻系统v1.1

这是本人根据自己学习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 "
"; 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>
	
	
		
新闻标题
新闻内容

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 "
"; }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);
}
?>

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%
<a href="../news_list.php">返回列表</a>


성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

인기 기사

R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

Atom Editor Mac 버전 다운로드

Atom Editor Mac 버전 다운로드

가장 인기 있는 오픈 소스 편집기

Eclipse용 SAP NetWeaver 서버 어댑터

Eclipse용 SAP NetWeaver 서버 어댑터

Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

VSCode Windows 64비트 다운로드

VSCode Windows 64비트 다운로드

Microsoft에서 출시한 강력한 무료 IDE 편집기

ZendStudio 13.5.1 맥

ZendStudio 13.5.1 맥

강력한 PHP 통합 개발 환경