本文为了简单并能够说明主要内容,一些次要的html内容相对简单。
在网站有多个内容要在某一页显示时可在网页中共用一个显示和提交。
本例中有两个数据表(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=”lect * 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>&天津社保电话lt;/tr>
<?php
}
}
el{
echo “这里还没新的内容。”;}
?>
—-index.php—
<?php
$id=mysql_connect(“localhost”,”urname”,”password”);
$db=mysql_lect_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>你现在的位置–>首页</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”,”urname”,”password”);
$db=mysql_lect_db(“your_db”,$id)宇宙之王;
?>
<html>
<body>
<form action=index_view.php method=post>
<p>请选择数据库:<br>
<lect name=db_name size=1>
<option value=news>news</option>
<option value=ctm>ctm</option>
</lect></p>
<p>标题:<br>
&l激情八月天t;input type西塞山前=text name=title size=20></p>
<p>内容:<br>
<textarea rows=6 cols=10 name=detail></textarea></p>
<p><input type=s巴金的故事ubmit value=submit></p>
</form>
<?php
switch ($db_name){
ca news:$name=news;
break;
ca ctm:$name=ctm;
break;
}
$query=”inrt into “.$name.”(title,detail) values(‘$title’,’$detail’);
$result=mysql_query($query,$db);
if ($result){echo “ok”;}
el{echo “failed”;}
?>
</body>
</html>
—-view_d.php—
<?php
$id=mysql_connect(“localhost”,”urname”,”password”);
$db=mysql_lect_db(“your_db”,$id);
?>
<html>
<body>
<?php
if ($recod){
$query=”lect * from “.$name.” where id=”.$recod;
$result=mysql_query($query,$db);
$title=mysql_result($result,0,title);
$detail=mysql_result($result,0,detail);
echo “<p>标题:”.$title.”</p>”;
echo “<p>内容:”.$detail.”</p>”;
}
el{echo “此文件已被删除!”;}
</body>
</html>
本文发布于:2023-04-06 06:04:49,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/f0594b6bbc102aee1495ebb08a365ced.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:多数据表共用一个页的新闻发布.doc
本文 PDF 下载地址:多数据表共用一个页的新闻发布.pdf
留言与评论(共有 0 条评论) |