溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng)

發(fā)布時間:2020-08-10 10:46:04 來源:億速云 閱讀:186 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng),文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

新聞發(fā)布系統(tǒng)

1. 系統(tǒng)簡介

    一個簡單的新聞系統(tǒng),包含了四個功能,增刪改查,利用PHP語言,結(jié)合了MySQL數(shù)據(jù)庫,開發(fā)工具用的是Dreamweaver。

2.數(shù)據(jù)庫設(shè)計(jì)

-- 數(shù)據(jù)庫: `newsdb`
CREATE DATABASE IF NOT EXISTS `newsdb` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `newsdb`;
-- 表的結(jié)構(gòu) `news`
CREATE TABLE IF NOT EXISTS `news` (
 `id` int(9) NOT NULL AUTO_INCREMENT,
 `title` varchar(50) NOT NULL,
 `keywords` varchar(50) NOT NULL,
 `author` varchar(16) NOT NULL,
 `addtime` datetime NOT NULL,
 `content` text NOT NULL,
 PRIMARY KEY (`id`)
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

首頁

<title>新聞首頁</title>
</head>

<body bgcolor="#CC6666">
<h2 align="center">新聞首頁</h2>
<h4 align="center"><a href="action.html" rel="external nofollow" >新建新聞</a>&nbsp;&nbsp;修改新聞&nbsp; &nbsp; 刪除新聞&nbsp;&nbsp;<a href="ssxw.html" rel="external nofollow" >搜索新聞</a></h4>
</body>

首頁效果圖

基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng)

新建新聞

<title>插入新聞</title>
</head>

<body>
<form action="adds.php" method="post">
<h4 align="center">插入新聞</h4>
<table width="300" align="center" border="2">
<tr>
<td>標(biāo)題</td>
<td><input type="text" name="title" /></td>
</tr>
<tr>
<td>關(guān)鍵字</td>
<td><input type="text" name="keywords" /></td>
</tr>
<tr>
<td>作者</td>
<td><input type="text" name="author" /></td>
</tr>
<tr>
<td>內(nèi)容</td>
<td><input type="text" name="content" /></td>
</tr>
<tr >
<td colspan="2" align="center"><input type="submit" value="提交" /></td>
</tr>
</table>
</form>
</body>

新建新聞效果圖

基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng)

新建新聞PHP

<title>動態(tài)</title>
</head>

<body>
<&#63;php
//加載數(shù)據(jù)庫
//include("mysql.php");
//連接數(shù)據(jù)庫
mysql_connect("localhost","root","") or die("連接失敗");
//設(shè)置編碼格式
mysql_query("set names utf-8");
//選擇數(shù)據(jù)庫
mysql_query("use newsdb") or die("選擇失敗");
//獲取輸入文本
$bt=$_POST['title'];
$gzj=$_POST['keywords'];
$zz=$_POST['author'];
$nn=$_POST['content'];
//獲取系統(tǒng)時間
/*改時區(qū)*/
date_default_timezone_set('PRC');
$time=date('Y-m-d h:i:s');
//加入數(shù)據(jù)
$mysql="insert into news values(null,'$bt','$gjz','$zz','$time','$nn')";
$aa=mysql_query($mysql);
//判斷是否插入
if($aa){
  echo "添加成功";}
  else{echo "添加失敗";}


&#63;>
</body>

查詢新聞

<title>搜索新聞</title>
</head>

<body>
<form action="ssxw.php" method="post">
<input type="text" name="ssxw" />
<input type="submit" value="搜索" />
</form>
</body>

查詢新聞效果圖

基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng)

查詢新聞PHP

<title>搜索新聞</title>
</head>
<body>
<table width="500" border="2">
<tr>
<th colspan="coL">ID</th>
<th colspan="COL">標(biāo)題</th>
<th colspan="COL">關(guān)鍵字</th>
<th colspan="COL">作者</th>
<th colspan="COL">時間</th>
<th colspan="COL">內(nèi)容</th>
</tr>
<&#63;php
//載入數(shù)據(jù)庫
include("mysql.php");
//獲取輸入的標(biāo)題
$ssxw=$_POST['ssxw'];
//利用 查詢語句
$sql="select * from news where title like '%$ssxw%'";
//利用索引數(shù)組
$cx=mysql_query($sql);
//遍歷出來
while($sy=mysql_fetch_row($cx)){
  echo "<tr>";
  echo "<td>$sy[0]</td>";
  echo "<td>$sy[1]</td>";
  echo "<td>$sy[2]</td>";
  echo "<td>$sy[3]</td>";
  echo "<td>$sy[4]</td>";
  echo "<td>$sy[5]</td>";
  echo "</tr>";
}
echo "<a href='index.html'>新聞首頁</a>";
&#63;>
</table>
</body>

查詢新聞效果圖

基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng)

注意:
1.連接數(shù)據(jù)庫
mysql_connect(“l(fā)ocalhost”,”root”,”“) or die(“連接失敗”);
2.設(shè)置編碼格式
mysql_query(“set names utf-8”);
3.選擇數(shù)據(jù)庫
mysql_query(“use newsdb”) or die(“選擇失敗”);       

以上是基于PHP+mysq要如何l實(shí)現(xiàn)新聞發(fā)布系統(tǒng)的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI