# 初級案例說明
原始碼下載
一、結構如下
conn.php 為連結資料庫檔案
index.php 為首頁,也是部落格清單頁 select * from weibo where $id order by id desclimit php 為編輯頁 UPDATE weibo SET `title`='$title',`contents`='$contents' where `id`='$hid'
del.php 為刪除操作頁
add.php 為新增頁
view .php 為詳情頁
二、資料庫
欄位說明id ,hit點擊量,title標題,dates日期,contents內容
CREATE TABLE `weibo` (
`id` int(5) NOT NULL AUTO_INCREMENT (11) NOT NULL,
`title` varchar(50) NOT NULL,
`dates` date NOT NULL,
`contents` text NOT NULL,
EY CHARSET=utf8;
三、注意點:
1.編輯時候,在表單中使用了隱藏域進行傳遞id
2.在搜尋的時候巧妙使用了where $w ,
if(!empty($_GET[' keys'])){
// $w = `title` like $_GET['keys'];
$w = " `title` like '%" . $_GET ['keys'] . "%' "; //使用模糊搜尋
}else{
$w = 1; //此句代碼轉換到sql語句中沒有實際意義。
//sql語句為select * from `weibo` where 1 order by id desc limit 10;
}
10;
}
以上就介紹了小案例:微型博客,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。