• 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>

  • 相关阅读:
    分布式配置中心Apollo
    Polling、Long Polling、WebSocket
    Ajax轮询请求
    Spark系列:Python版Spark编程指南
    Python Http请求json解析库
    监听Rabbitmq系统日志(python版)
    mysql主从复制
    SAP FBN1 Number Range In Financial Accounting & Table Name NRIV, OBJ RF_BELEG
    Electronic Bank Statement Upload and Deletion
    SAP EPIC Interpretation Algorithms For Bank Statement Algorithms posting rule auto-calculation 电子银行对账单自动记账 FF_5, FEBAN
  • 原文地址:https://www.cnblogs.com/swinm/p/3389715.html
Copyright © 2020-2023  润新知