forked from zhaobod1/QDadvertorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menhuhzinfo.php
executable file
·52 lines (52 loc) · 1.75 KB
/
menhuhzinfo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
include("include/config.php");
include("include/function.php");
$ID=$_REQUEST["ID"];
$sqlN="select * from menhuhz_info where ID=".$ID."";
$resultN=mysql_db_query($dbname,$sqlN);
$rsN=mysql_fetch_array($resultN);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<TITLE><?php echo $rsN["title"];?>_<?php echo $webname;?></TITLE>
<META content="text/html; charset=UTF-8" http-equiv=Content-Type>
<LINK rel=stylesheet type=text/css href="../images/index.css">
<LINK rel=stylesheet type=text/css href="../images/css.css">
<link href="../images/ruanwenjie.css" rel="stylesheet" media="screen" type="text/css">
<META name=GENERATOR content="MSHTML 8.00.6001.19394">
</head>
<body class="articleview">
<div class="header clearfix">
<div class="top">
<div class="head">
<h1><a href="/"></a></h1>
</div>
</div>
<?php
include("menu.php");
?>
</div>
<div id="wrapmain">
<div class="maincont clearfix">
<div class="adct corner5px mb15 clearfix" id="adt"><img src="./images/banner.jpg" width="980" height="279"></div>
<div class="wrapindex clearfix">
<div class="homeleft corner5px mb15">
<div class="position">当前位置:<a href="/">网站主页</a> > 门户合作预览</div>
<div class="b2"></div>
<div class="clearfix" id="content">
<div class="post-title">
<h1><?php echo $rsN["title"];?></h1>
</div>
<div class="clearfix"></div>
<div class="post-content clearfix"><?php echo $rsN["content"];?></div>
</div>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
?>
</body>
</html>