| 1 |
<? |
<? |
| 2 |
require_once "./whereis.inc.php"; |
require_once "../lib/db_open.inc.php"; |
| 3 |
?> |
?> |
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
|
| 4 |
<? |
<? |
| 5 |
if (isset($_GET["type"])) |
if (isset($_GET["type"])) |
| 6 |
$type=$_GET["type"]; |
$type=$_GET["type"]; |
| 110 |
<select name="jid" value="0"> |
<select name="jid" value="0"> |
| 111 |
<option value="0">--请选择发布时间--</option> |
<option value="0">--请选择发布时间--</option> |
| 112 |
<? |
<? |
|
$db_conn=include "./db_open.inc.php"; |
|
| 113 |
$rs=mysql_query("select * from journal_index where enable order by dt"); |
$rs=mysql_query("select * from journal_index where enable order by dt"); |
| 114 |
while($row=mysql_fetch_array($rs)) |
while($row=mysql_fetch_array($rs)) |
| 115 |
{ |
{ |
| 117 |
<? |
<? |
| 118 |
} |
} |
| 119 |
mysql_free_result($rs); |
mysql_free_result($rs); |
|
mysql_close($db_conn); |
|
| 120 |
?> |
?> |
| 121 |
</select> |
</select> |
| 122 |
<input type="submit" value="浏览" onclick="return (jid.value!='0');"> |
<input type="submit" value="浏览" onclick="return (jid.value!='0');"> |
| 130 |
<select name="sid" value="0"> |
<select name="sid" value="0"> |
| 131 |
<option value="0">--请选择版块--</option> |
<option value="0">--请选择版块--</option> |
| 132 |
<? |
<? |
|
$db_conn=include "./db_open.inc.php"; |
|
| 133 |
$rs_class=mysql_query("select CID,title from section_class where enable order by sort_order"); |
$rs_class=mysql_query("select CID,title from section_class where enable order by sort_order"); |
| 134 |
while($row_class=mysql_fetch_array($rs_class)) |
while($row_class=mysql_fetch_array($rs_class)) |
| 135 |
{ |
{ |
| 145 |
mysql_free_result($rs_section); |
mysql_free_result($rs_section); |
| 146 |
} |
} |
| 147 |
mysql_free_result($rs_class); |
mysql_free_result($rs_class); |
|
mysql_close($db_conn); |
|
| 148 |
?> |
?> |
| 149 |
</select> |
</select> |
| 150 |
<input name="search_text" value=""> |
<input name="search_text" value=""> |
| 176 |
|
|
| 177 |
</table> |
</table> |
| 178 |
<? |
<? |
| 179 |
|
mysql_close($db_conn); |
| 180 |
|
|
| 181 |
include "./foot.inc.php"; |
include "./foot.inc.php"; |
| 182 |
?> |
?> |
| 183 |
</center> |
</center> |