⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loginsta.php

📁 强大的PHP内容管理系统尽量不要让站长把时间都花费在为您修正说明上。压缩包解压
💻 PHP
字号:
<?php 
header("Pragma:no-cache\r\n");
header("Cache-Control:no-cache\r\n");
header("Expires:0\r\n");
header("Content-Type: text/html; charset=gb2312");
//系统设置为维护状态可访问
$cfg_IsCanView = true;
require_once(dirname(__FILE__)."/config_space.php");
require_once(dirname(__FILE__)."/../include/inc_memberlogin.php");
$cfg_ml = new MemberLogin(); 
if(empty($cfg_ml->M_ID)){ echo ""; exit(); }
$uid = $cfg_ml->M_LoginID;
$dsql = new DedeSql(false);
$spaceInfos = $dsql->GetOne("Select ID,uname,spacename,spaceimage,sex,c1,c2,spaceshow,logintime,news From #@__member where userid='$uid'; ");
if(!is_array($spaceInfos)){
	$dsql->Close(); echo ""; exit();
}
$dsql->Close();
foreach( $spaceInfos as $k=>$v){if(ereg("[^0-9]",$k)) $$k = $v; }
if($spaceimage==''){
	if($sex=='女') $spaceimage = $cfg_memberurl.'/img/dfgril.gif';
	else $spaceimage = $cfg_memberurl.'/img/dfboy.gif';
}
?>
<table width="212" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td height="27" colspan="2" align="center" style="border-bottom:1px solid $cdcdcd;background-color:#FAFAFA"><img src="<?php echo $cfg_templeturl?>/img/menumember.gif" width="16" height="15">你好:<font color='#2D78EA'>
      <?php echo $cfg_ml->M_UserName?>
      </font>,欢迎登录</td>
</tr>
<tr> 
<td rowspan="3" align="center">
	<img name="ok" src="<?php echo $spaceimage?>" width="100" height="75" alt="<?php echo $spacename?>" border="0"> 
</td>
<td width="40%" height="29" align="center"><a href="<?php echo $cfg_memberurl?>/guestbook_admin.php" class="mbline">[我的留言]</a></td>
</tr>
<tr> 
<td height="29" align="center"><a href="<?php echo $cfg_memberurl?>/mystow.php" class="mbline">[我的收藏]</a></td>
</tr>
<tr> 
<td height="29" align="center"><a href="<?php echo $cfg_memberurl?>/article_add.php" class="mbline">[发表文章]</a></td>
</tr>
<tr align="center"> 
    <td height="30" colspan="2">
    	<table width="96%" height="26" border="0" cellpadding="1" cellspacing="1" bgcolor="#dedede">
        <tr>
          <td align="center" bgcolor="#FAFAFA">
          	 <a href="<?php echo $cfg_memberurl?>/index.php">中心主页</a> |
          	 <a href="<?php echo $cfg_memberurl?>/control.php">管理</a> |
          	 <a href="<?php echo $cfg_memberurl?>/index.php?uid=<?php echo $uid?>">空间</a> |
          	 <a href="<?php echo $cfg_memberurl?>/index_do.php?fmdo=login&dopost=exit">注销</a>
          </td>
        </tr>
      </table></td>
</tr>
</table>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -