この記事を簡潔にし、主要なコンテンツを説明するために、一部の二次的な HTML コンテンツは比較的単純になっています。
Webサイト上で、特定のページに表示するコンテンツが複数ある場合、Webページ内で1つの表示と投稿を共有することができます。
この例には、ホームページ (index.php)、
送信ページ (index_pub.php)、およびパッケージ ページ (index_view.php) の 2 つのデータ テーブルがあります。サブページ (view_d.php)。
---news,ctm---
テーブル news(id int(80) not null auto_increment,title char(100),detail text,primay key(id ) を作成します。 );
increate table ctm(id int(80) not null auto_increment,title char(100),detail text,primay key(id));
----index_view. ---
$query="select * from ".$name." order by id desc limit 0,5;
$result=mysql_query($query,$db) ;
if ($result){
while($myrow=msyql_fetch_array($result)){
?>
あなたの名前オンライン
你现在的位置-->首页
;hr size=2 color=green width=100%>
Copyrignt 1999… ----index_pub.php--- $id=mysql_connect("localhost","username","password"); $db=mysql_select_db("your_db",$id); ?> <本体> switch ($db_name){ ケースニュース:$name=news; 休憩; case ctm:$name=ctm; 休憩; } $query="".$name."(title,detail) に挿入 value('$title','$detail'); $result=mysql_query($query,$db ); if ($result){echo "ok";} else{echo "failed";} ?> ----view_d.php--- $id=mysql_connect("localhost","username","password"); mysql_select_db("your_db",$id); if ($recod){ query="「.$name」から * を選択します。"ここで id=".$recod; $result=mysql_query($query,$db); $title=mysql_result($result,0,title); $detail=mysql_result($result, 0,detail); echo " 标题:".$title." ";echo " 内容:".$detail." }else{echo "此文件已被删除!";} |