📄 member_common_menu.php
字号:
<?php
include( "../config.inc.php" );
include( "../includes/SysGlobal.php" );
include( "language/".$aLan."_".$charset.".php" );
include( "../includes/version.php" );
include( "../includes/pro.php" );
include( "func/adm.inc.php" );
include( "func/common.inc.php" );
include( "func/db.inc.php" );
include( "func/nocatch.php" );
needauth( 52 );
echo "<html>\r\n<head >\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=";
echo $charset;
echo "\">\r\n<link id=\"style_sheet\" href=\"css/commonstyle.css\" type=\"text/css\" rel=\"stylesheet\">\r\n<title>";
echo $strAdminTitle;
echo "</title>\r\n</head>\r\n\r\n<body class=\"NormalPage\">\r\n<table width=\"100%\" border=\"0\" cellspacing=\"6\" cellpadding=\"4\" align=\"center\" background=\"images/menubg.gif\" height=\"36\" >\r\n <tr align=\"center\" valign=\"top\"> \r\n <td ><font color=\"#FFFFFF\">";
echo $strMemberComm;
echo "</font></td>\r\n </tr>\r\n</table>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\">\r\n <tr align=\"center\"> \r\n <td height=\"1\"></td>\r\n </tr>\r\n</table>\r\n";
$k = 0;
$msql->query( "select * from {$tbl_member_type} order by membertypeid" );
while ( $msql->next_record( ) )
{
$membertypeid = $msql->f( "membertypeid" );
$membertype = $msql->f( "membertype" );
if ( $k == 0 )
{
echo "<script>parent.main.location='member_common.php?membertypeid=".$membertypeid."'</script>";
}
echo " \r\n<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\">\r\n <tr align=\"center\"> \r\n <td ><a href=\"member_common.php?membertypeid=";
echo $membertypeid;
echo "\" target=\"main\"><img src=\"images/member_common.gif\" width=\"50\" height=\"50\" border=\"0\"></a></td>\r\n </tr>\r\n <tr align=\"center\"> \r\n <td height=\"22\"> <a href=\"member_common.php?membertypeid=";
echo $membertypeid;
echo "\" target=\"main\"><font color=\"#000000\">";
echo $membertype;
echo $strMemberAdmin;
echo "</font></a></td>\r\n </tr>\r\n</table>\r\n";
$k++;
}
echo " \r\n</body>\r\n</html>\r\n";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -