index.php
<?php
include("head.php");
disphaed("blog display page");
if (!empty($_get['keys'])) else
//引入連線資料庫
include("connect.php");
//總記錄數
mysql_query('set names utf8');
$count = mysql_result(mysql_query("select count(*) from ".db_tbname),0);
//每頁顯示
$size = 10;
//總頁數
$pagecount = ceil($count/$size);
//獲取瀏覽器傳來的page值 去除兩邊空格 轉成整數 無則賦值1
$page = isset($_get['page']) ? intval(trim($_get['page'])) : 1;
//如果小於1或大於總頁數則等於1
if($page < 1) $page = 1;
if($page > $pagecount) $page = $pagecount;
//從第幾條記錄開始顯示
$begin = ($page - 1) * $size;
$sql = mysql_query("select * from ".db_tbname." where $w order by id desc limit $begin,$size");
while($count && $rs = mysql_fetch_array($sql))"),0);
echo <<
date: | cilck() | comment()
html;
}//翻頁
$last = $page - 1;//前頁
$next = $page + 1;//後頁
echo <<
view.php
<?php
include("head.php");
disphaed("blog display content");
include("connect.php");
if (!empty($_get['id']))
if (!empty($_post['submit'])) ,'', '','', now())";
mysql_query('set names utf8');
if (!mysql_query($sql))
$_session['refresh'] = $_post['content'];
}}$u = isset($_session['mng_name']) ? $_session['mng_name'] : '';
$t = isset($_session['mng_tag']) ? $_session['mng_tag'] : '';
if ($u == "" and $t != 1) | click num:
html;
$sql_last ="select * from ".db_tbname." where id
$sql_next ="select * from ".db_tbname." where id>$id limit 0,1";
$result = mysql_query( $sql_last );
if( mysql_num_rows( $result ) )
html;
}else)
html;}}
}elseelse
echo <<
html;
}?>
foot.php
<?php
echo <<
html;
?>
效果:
Django搭建簡易部落格
django簡易部落格,主要實現了以下功能 連線資料庫 建立超級使用者與後台管理 利用django admin bootstrap美化介面 template,view與動態url markdown與 高亮 歸檔,aboutme和標籤分類 搜尋與readmore rss與分頁 需要新增的安裝包 要注意...
php簡易計數
嘛,受朋友所託寫的,不是什麼大不了的東西,貼上來就當給初學者參考吧 只有計數功能,利用session防止重複計數 注意只能執行在php5 上 見頁內 ezcounter mit lisence class ezcounter else 獲取計數 public function gethits fla...
我的簡易部落格系統。
1 使用者可以進行使用者註冊,成為系統的合法使用者,並且保持登入狀態。2 使用者可以進行使用者登入,成為登入狀態。3 使用者可以發表文章,為了發表文章。4 使用者可以檢視系統中已有的文章列表,為了選擇其中的文章進行具體的閱讀。5 使用者可以選擇一篇具體的文章,檢視該文章的詳細內容。圍繞實體,進行功能...