<? include "../inc/config.php";
include "../../inc/inc.php"; ?>
<HTML>
<HEAD>
<TITLE>栏目修改</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<link href="../css/main.css" rel="stylesheet" type="text/css">
<!-- jinhaobi.com Baidu tongji analytics -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?a9f67843137ac498d8fea7cdfbab9eaa";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</HEAD>
<BODY class=iframe-right-body>
<TABLE class=table-width cellSpacing=0 cellPadding=6 align=center border=0>
<TBODY>
<TR class=h-dashed>
<TD>当前位置:<A
href="../right.php">桌面</A>
>栏目修改</TD>
<TD noWrap align=right><A
href="../thirdhtml/help.html"><IMG height=20
src="../images/icon-help.gif" width=20 align=absMiddle
border=0> 寻求帮助</A></TD>
</TR></TBODY></TABLE><BR>
<TABLE width="100%" border=0>
<TBODY>
<TR>
<TD class=title2>【栏目修改】</TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 width="100%" align=center border=0>
<TBODY>
<TR class=font>
<TD class=table-list-title width="6%">
<DIV align=center>ID</DIV></TD>
<TD class=table-list-title width="13%">
<DIV align=center></DIV>
<DIV align=center>名称</DIV></TD>
<TD class=table-list-title width="24%">
<DIV align=center>链接地址</DIV></TD>
<TD class=table-list-title width="13%">状态</TD>
<TD class=table-list-title width="10%">修改</TD>
<TD class=table-list-title width="10%">
<DIV align=center>访问次数</DIV></TD>
<TD class=table-list-title width="11%">
<DIV align=center>备注</DIV></TD>
<TD class=table-list-title width="13%">排序号</TD></TR>
<?
$lang = $_GET['lang']; //取得菜单的id
$result=mysql_query("select * from functions where lang='$lang' and parent_id=0 Order by ctid desc;");
$numrows=mysql_num_rows($result);
for($rows=0;$rows<$numrows;$rows++)
{
$date=mysql_fetch_array($result);
?>
<TR class=table-list-link onMouseOver="this.className='table-list-hover'"
onmouseout="this.className='table-list-link'">
<TD class=table-list-style align=middle height=19><?=$date['ctid']?></TD>
<TD class=table-list-style align=middle><?=$date['name']?></TD>
<TD class=table-list-style align=middle> <?=$date['url']?></TD>
<TD class=table-list-style align=middle><FONT color=red>
<?
if($date['is_show']==1)
{
echo "显示";
}
else
{
echo "隐藏";
}
?>
</FONT></TD>
<TD class=table-list-style align=middle><A
href="initFunction.php?ctid=<?=$date['ctid']?>&lang=<?=$_GET['lang']?>">修改</A></TD>
<TD class=table-list-style align=middle> 0</TD>
<TD class=table-list-style align=middle> </TD>
<TD class=table-list-style align=middle> <?=$date['sortid']?></TD></TR>
<?
}
?>
</TBODY></TABLE>
</BODY></HTML>