本文為了簡單並能夠說明主要內容,一些次要的html內容相對簡單。
在網站有多個內容要在某一頁顯示時可在網頁中共用一個顯示和提交。
本例中有兩個資料表(news,ctm);一個主頁(index.php);
一個提交頁(index_pub.php;和一個包函頁(index_view.php)
一個子頁(view_d.php)。 ));
increate table ctm(id int(80) not null auto_increment,title char(100),detail text,primay key(id));
----index_view. php---
$query="select * from ".$name." order by id desc limit 0,5;
$result=mysql_query($query,$db);
if ($result){
while($myrow=msyql_fetch_array($result)){
?>