zoukankan      html  css  js  c++  java
  • discuz系统整合,外部调用登陆和会员信息

    本方法主要是在静态htm文件引入动态php,输出到页面:

    在论坛根部新建文件login.php

    //引入discuz核心初始化类
    require './source/class/class_core.php';
    $discuz = C::app();
    $discuz->init();
    
    //判断用户登陆
    <?php  if (empty($_G['uid'])) {?>
    
    document.writeln("<form action="<?php echo $_G['siteurl']; ?>member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes" method="post" name="form2" onSubmit="return check()" >");
    document.writeln("<div class="login_un">");
    document.writeln("<input class="u_t" name="username" type="text" value="" > ");
    document.writeln("<input class="s_t" type="submit" name="sub" value="登录" ><span>|</span><a class="index_reg" href="<?php echo $_G['siteurl']; ?>member.php?mod=register">注册</a> ");
    document.writeln("</div>");
    
    document.writeln("<div class="login_up" >");
    document.writeln("<input class="u_t" type="password" name="password" > <a href="<?php echo $_G['siteurl']; ?>member.php?mod=logging&action=login&viewlostpw" style="padding-left:16px;">找回密码</a> ");
    document.writeln("</div>");
    
       
    <?php } else { ?>
    
    document.writeln("<div class="status_user">欢迎您:<a href=<?php echo $_G['siteurl']; ?>home.php?mod=space&uid=<?php echo $_G['uid']; ?> class="yellow"><?php echo  $_G['username']; ?></a> ");
    document.writeln("<a href=<?php echo $_G['siteurl']; ?>home.php?mod=spacecp>设置</a> ");
    document.writeln("<a href=<?php echo $_G['siteurl']; ?>home.php?mod=space&do=pm>消息</a> ");
    document.writeln("<a href=<?php echo $_G['siteurl']; ?>home.php?mod=space&do=notice>提醒</a> ");
    
    document.writeln("<a href=<?php echo $_G['siteurl']; ?>forum.php?mod=guide&view=my>我的帖子</a> ");
    document.writeln(" <a href=<?php echo $_G['siteurl']; ?>home.php>个人中心</a> ");
    document.writeln(" <a href=<?php echo $_G['siteurl']; ?>member.php?mod=logging&action=logout&formhash=<?php echo FORMHASH;?>>退出登陆</a></div>");
    
    <?php }?>

      引入文件即可:  <script src="http://www.XXX.com/bbs/login.php" type="text/javascript"></script>

  • 相关阅读:
    vue 移动端商城搭建 (一)
    关于mantisBT2.22安装插件Inline column configuration 2.0.0时提示缺少依赖jQuery UI Library 1.8
    mantis2.22.1中添加管理员密码修改框
    mantisbt2.22.1 中使用自带的phpmailer发送邮件(实测可用)
    Mac配置Jenkins(构建Allure模板报告)
    ATX插件机制-学习学习
    查看包名和Activity的小工具
    pytest跳过指定的测试或模块
    pytest常用命令参数
    关于pytest使用allure生成报告时,报一堆警告和缺少XX模块
  • 原文地址:https://www.cnblogs.com/swinm/p/3389715.html
Copyright © 2011-2022 走看看