| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?
- include("../config/conn.php");
- include("../config/function.php");
- sesCheck();
- if($_GET[action]=="del"){
- updatetable("yjcode_user","ifqq=0,openid='' where uid='".$_SESSION[SHOPUSER]."'");
- php_toheader("qq.php");
- }
- ?>
- <!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>
- <meta http-equiv="x-ua-compatible" content="ie=7" />
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>用户管理面板 - <?=webname?></title>
- <? include("cssjs.html");?>
- <link href="css/inf.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <? include("../tem/top.html");?>
- <? include("top.php");?>
- <div class="yjcode">
- <? include("left.php");?>
- <!--RB-->
- <div class="userright">
-
- <? include("rcap1.php");?>
- <script language="javascript">
- document.getElementById("rcap6").className="l1 l2";
- </script>
- <!--白B-->
- <div class="rkuang">
-
- <? systs("恭喜您,操作成功!","qq.php")?>
- <? if(0==$rowuser[ifqq]){?>
- <ul class="qqtxt">
- <li class="l1">
- <a href="../config/qq/oauth/index.php"><img border="0" src="../img/qq_login.png" /></a><br>
- 点击按钮,立即绑定QQ帐号
- </li>
- <li class="l2">
- 使用QQ帐号登录本站,您可以……<br>
- 用QQ帐号轻松登录<br>
- 无须记住本站的帐号和密码,随时使用QQ帐号密码轻松登录
- </li>
- </ul>
- <? }else{?>
- <ul class="qqtxt">
- <li class="l3">
- <strong>您已将本站帐号与QQ号码绑定</strong><br>
- 解除已绑定帐号?<br>
- <input type="button" class="btn1" onclick="gourl('qq.php?action=del')" onmouseover="this.className='btn1 btn2';" onmouseout="this.className='btn1';" value="确认解除" />
- </li>
- </ul>
- <? }?>
-
- </div>
- <!--白E-->
- </div>
- <!--RE-->
- </div>
- <div class="clear clear15"></div>
- <? include("../tem/bottom.html");?>
- </body>
- </html>
|