新闻管理系统的设计与实现
1、基本设计思路:新闻管理系统主要包括:新闻添加、新闻删除、新闻编辑、新闻列表;新闻数据表至少包含: ID、标题、内容和时间。
2、代码实现:
<html>
<head>
<title>新闻管理系统</title>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312"/>
<head>
<body>
新闻列表如下:
<br/>
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
include_once("db.cls.php");
$_CFG = array(
"DB" =>
array(
"DEFAULT" =>
array(
"logfile" => "D:\wamp\log\log.txt",
"host" => "localhost:3306",
"user" => "root",
"password" => 123456,
"db_name" => "news_db",
"charset" => "gb2312",
),
),
);
$db = new Mysql();
$db->open("DEFAULT");
$tbl_name =