最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

多數(shù)據(jù)表共用一個頁的新聞發(fā)布

 更新時間:2006年10月09日 00:00:00   投稿:mdxy-dxy  
這篇文章主要給大家介紹了關(guān)于多數(shù)據(jù)表共用一個頁的新聞發(fā)布的相關(guān)資料,需要的朋友可以參考下

本文為了簡單并能夠說明主要內(nèi)容,一些次要的html內(nèi)容相對簡單。
在網(wǎng)站有多個內(nèi)容要在某一頁顯示時可在網(wǎng)頁共用一個顯示和提交。
本例中有兩個數(shù)據(jù)表(news,ctm);一個主頁(index.php);
一個提交頁(index_pub.php;和一個包函頁(index_view.php)
一個子頁(view_d.php)。
----news,ctm---
increate table 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.php---
<?ph
$query="select * from ".$name." order by id desc limit 0,5;
$result=mysql_query($query,$db);
if ($result){
while($myrow=msyql_fetch_array($result)){
?>
<tr><td><a href="view_d.php?recod=<?php echo $myrow[id]; ?>&name=<?php echo $name; ?>">$myrow[title]</a></td></tr>
<?php
  }
}
else{
echo "這里還沒新的內(nèi)容。";}
?>


----index.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<hr size=0 color=green width=100%>
<p align=left><font color=green size=+3>Yourname Online</font></p>
<hr size=3 color=green width=100%>
<p align=left><font size=-1>你現(xiàn)在的位置-->首頁</font></p>
<hr size=2 color=green width=100%>
<table width=100 border=0 cellpadding=0 cellspacing=0>
  <tr>
<!-- news -->
    <td width=50% align=left>
      <table width=100 border=0 cellpadding=0 cellspacing=0>
        <?php
           $name=news;
           include("index_view.php");
        ?>
      </table>
    </td>
<!-- ctm -->
    <td width=50% align=left>
      <table width=100 border=0 cellpadding=0 cellspacing=0>
        <?php
           $name=ctm;
           include("index_view.php");
        ?>
      </table>
    </td>
  </tr>
</table>
<hr size=0 width=100% color=green>
<p align=center><font size=-1>Copyrignt 1999…</font></P>
</body>
</html>

----index_pub.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<form action=index_view.php method=post>
  <p>請選擇數(shù)據(jù)庫:<br>
  <select name=db_name size=1>
    <option value=news>news</option>
    <option value=ctm>ctm</option>
  </select></p>
  <p>標(biāo)題:<br>
  <input type=text name=title size=20></p>
  <p>內(nèi)容:<br>
  <textarea rows=6 cols=10 name=detail></textarea></p>
  <p><input type=submit value=submit></p>
</form>
<?php
switch ($db_name){
   case news:$name=news;
   break;
   case ctm:$name=ctm;
   break;
}
$query="insert into ".$name."(title,detail) values('$title','$detail');
$result=mysql_query($query,$db);
if ($result){echo "ok";}
else{echo "failed";}
?>
</body>
</html>

----view_d.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<?php
if ($recod){
   $query="select * from ".$name." where id=".$recod;
   $result=mysql_query($query,$db);
   $title=mysql_result($result,0,title);
   $detail=mysql_result($result,0,detail);
   echo "<p>標(biāo)題:".$title."</p>";
   echo "<p>內(nèi)容:".$detail."</p>";
}
else{echo "此文件已被刪除!";}
</body>
</html> 

相關(guān)文章

最新評論

腾冲县| 积石山| 汽车| 阿勒泰市| 霍邱县| 雷波县| 融水| 营口市| 蓝田县| 临洮县| 稷山县| 巴彦淖尔市| 古丈县| 始兴县| 绍兴县| 拜泉县| 开鲁县| 易门县| 阳春市| 韶山市| 资阳市| 兴国县| 南召县| 景德镇市| 仁怀市| 江油市| 克东县| 马尔康县| 石门县| 积石山| 宝丰县| 金寨县| 民乐县| 政和县| 晋城| 黔江区| 合肥市| 保定市| 贡觉县| 嘉定区| 峨眉山市|