###############index.php######################
<?session_start ();
require"./inc/func.php";
mscon();
require "./inc/header.inc";
?>
$type=trim($type);
if($comm)
if(!empty($type))
$query="select count(*) from $table where type='$type' $sec";
else
$query="select count(*) from $table $fir";
$res=mysql_db_query("$database",$query);
if(@mysql_num_rows($res)>0)
$tot=mysql_fetch_array($res);
$total=$tot[0];
$total_page=ceil($total/$pagenum);
echo "";
echo "共:".$total."篇".$total_page."頁
"; if(empty($page))
$page=0;
if(empty($offset))
$offset=0;
$offset=$pagenum*$page;
if(!empty($type))
$query="select * from $table where type='$type' $sec order by id desc limit $offset,$pagenum";
else
$query="select * from $table $fir order by id desc limit $offset,$pagenum";
$res=mysql_db_query("$database",$query);
if(@mysql_num_rows($res)>0)
while($topic=mysql_fetch_array($res))
if(trim($topic[time])==date(y年m月d日))
$topic[time]="$topic[time]";
echo" [$topic[type]]$topic[title]
($topic[time])";
if($topic[comm]==1)
echo "
if($topic[locked]==1)
echo "
echo "
<?require "./inc/footer.inc";?>
#####################read_article.php#########################
require"./inc/func.php";
if(!$id)
mscon();
$query="select * from $table where id='$id'";
$res=mysql_db_query("$database",$query);
if(!$res)
$data=mysql_fetch_array($res);
add_hits($data[id]);
$pre=$data[id]-1;
$next=$data[id]+1;
?>
echo $data[title];?>
php?id= echo $pre;?>">
php?id= echo $next;?>">
if($data[locked]<>0)
else
if($data[html]==1)
highlight_string($data[cont]);
else
echo nl2br($data[cont]);
?>
基於PHP MySQL的社團管理系統
隨著我國教育制度的改革,各大高校都擁有自己了的社團社,社團主要作用是讓學生根據自己的興趣愛好,積極參加到社會活動中去,從而更好的培養自己的個人能力。如果只是單純的在學校學習課本上的知識,那麼就會缺少社會活動能力,缺少社會活動大學生是很難在社會上立足的,所以為了能夠讓大學生在畢業之後就能夠很快的融入到...
基於PHP MySQL的超市管理系統
隨著零售產業的發展,超市已經遍地開花。隨處可以看到這些零售的超市和便利店。差超市內商品琳琅滿目種模擬較多。所以如何能夠更好的對超市內商品資訊進行進銷存的管理,是很多超市人員一直以來所關心的問題。超市管理系統的主要構成分為兩部分,一是商品的入庫管理操作,另乙個是商品的出庫管理操作。圍繞這兩大部分,超市...
簡單文章管理系統
花了一天的時間,對文章系統於2016 10 29進行了優化。並把kindeditor編輯器換成了ueditor編輯器。改變了一些布局 美化一些布局,和樣式的調整 管理中心的新建檔案可以建立基於quartz的文章。在指定時間發布 但是ueditor的主題並不適合本系統,正在想辦法進行替換,嘿嘿 花了一...