-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp_lest.php
108 lines (107 loc) · 3.52 KB
/
help_lest.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
include_once("inc/conn.php");
include_once("inc/function.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>User Guide-<?=$web_name;?></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="keywords" content="<?=$web_keywords;?>" />
<meta name="description" content="<?=$web_description;?>" />
<META http-equiv=X-UA-Compatible content=IE=EmulateIE7>
<link href="style/default.css" rel="stylesheet" type="text/css" />
<style type="tett/css">
rt11 a{color:#EEDFFF;}
rt11 a:hover{color:#C8F14D;}
</style>
</head>
<?php include_once("top.php");?>
<DIV class="wrapper">
<DIV class="page_content">
<!--Ö÷Ìå×ó±ß Start-->
<div class="area690 fl" style="float:right;">
<div class="area690-t h5px"></div>
<div class="area690-info">
<ul class="rt11" style="margin-top:30px;margin-left:30px;">
<?
$intpage = 18;
if (isset($_GET['page'])) {
$rsnum = (intval($_GET['page']) -1)*$intpage;
}
else {
$rsnum = 0;
}
$sql="Select * from {$web_dbtop}help";
$sql.=" Order by top desc,id desc";
$query=$db->query($sql);
if($db->fetch_array($query))
$intnum=$db->num_rows($query);
$query=$db->query($sql." limit $rsnum,$intpage");
while($rs=$db->fetch_array($query)){
$i++;
if($rs["top"]==1){
echo"<li><A href=\"help_content.php?id=".$rs["id"]."\"><FONT color=#FF6308>".$rs["title"]."</FONT></A></li>\r\n<p class='ge'></p>";
}else{
echo"<li><A href=\"help_content.php?id=".$rs["id"]."\"><FONT>".$rs["title"]."</FONT></A></li>\r\n<p class='ge'></p>";
}
if($i % 6==0){
//echo"<li class='line'></p>";
}
}
?>
</ul>
<div class="pages">
<?php
include_once("inc/page_class.php");
$page=new page(array('total'=>$intnum,'perpage'=>$intpage));
echo $page->show(6,"","disabled");?>
</div>
<div class="cl"></div>
</div>
<div class="area690-b h5px"></div>
<div class="blank10"></div>
</div>
<!--Ö÷Ìå×ó±ß End-->
<!--Ö÷ÌåÓÒ±ß Start-->
<div class="area260 fr" style="float:left;">
<!--<DIV class="news-title">
<span><a href="help_lest.php">More»</a></span>
<H3 style="color:white;">Users Guide</H3>
</DIV>
<ul class="area260-info news-list">
<?
$query=$db->query("Select * from {$web_dbtop}help Order by top desc,id desc limit 10");
while($rs=$db->fetch_array($query)){
?>
<LI><A title="<?=$rs["title"]?>" href="help_content.php?id=<?=$rs["id"]?>"><?=$rs["title"]?></A></LI>
<?
}
?>
</ul>
-->
<DIV class="area260-b h5px"></DIV>
<DIV class=blank10></DIV>
<DIV class="news-title">
<span><a href="bbs/">More»</a></span>
<H3 style="color:white;">Hot Topics</H3>
</DIV>
<ul class="area260-info news-list">
<?
$query=$db->query("Select * from {$web_dbtop}bbs_posts Order by dj desc,id desc limit 10");
while($rs=$db->fetch_array($query)){
?>
<LI><A title="<?=$rs["title"]?>" href="<?=$web_dir?>bbs/read.php?forumsid=<?=$rs["section"]?>&threadsid=<?=$rs["id"]?>" target=_blank><?=$rs["title"]?></A></LI>
<?
}
?>
</ul>
<DIV class="area260-b h5px"></DIV>
<DIV class=blank10></DIV>
</div>
</DIV>
<!--Flink End-->
<div class="blank10"></div>
<!--Footer Start-->
<?php include_once("footer.php");?>
</DIV>