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

📄 index.php

📁 相关软件: ·帝国网站管理系统(Ecms) v3.5 繁体版 ·搜索更多与"帝国网站管理系统(Ecms) "相关的软件 注意事项: ·注意:本站软件一律只用鼠标左键打开
💻 PHP
字号:
<?
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/q_functions.php");
include("../../class/user.php");
include("../../data/language/fun.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=1;
//是否登陆
$user=islogin();
$page=$_GET['page'];
$start=$_GET['start'];
$line=25;//每页显示条数
$page_line=12;//每页显示链接数
if(empty($page))
{$page=0;}
if(empty($start))
{$start=0;}
$offset=$start+$page*$line;//总偏移量
$query="select * from phome_enewsbuybak where userid='$user[userid]'";
$num=$empire->num($query);//取得总条数
$query=$query." order by buytime desc limit $offset,$line";
$sql=$empire->query($query);
$returnpage=page1($num,$line,$page_line,$start,$page,$search);
$url="<a href=../../../>首页</a>&nbsp;>&nbsp;<a href=../cp>控制面板</a>&nbsp;>&nbsp;我的购买记录";
@include("../../data/template/cp_1.php");
?><br> 
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#4791C5">
  <tr> 
    <td width="34%" height="25"><div align="center"><font color="#FFFFFF">充值卡号</font></div></td>
    <td width="21%" height="25"><div align="center"><font color="#FFFFFF">冲值金额</font></div></td>
    <td width="18%" height="25"><div align="center"><font color="#FFFFFF">购买点数</font></div></td>
    <td width="27%" height="25"><div align="center"><font color="#FFFFFF">购买时间</font></div></td>
  </tr>
  <?
  while($r=$empire->fetch($sql))
  {
	  //包月天数
	  if($r[userdate])
	  {
		  $r[cardfen]=$r[userdate]." 天";
	  }
	  else
	  {
		  $r[cardfen]=$r[cardfen]." 点";
	  }
  ?>
  <tr bgcolor="#FFFFFF"> 
    <td height="25"><div align="center"><?=$r[card_no]?></div></td>
    <td height="25"><div align="center"><?=$r[money]?></div></td>
    <td height="25"><div align="center"><?=$r[cardfen]?></div></td>
    <td height="25"><div align="center"><?=$r[buytime]?></div></td>
  </tr>
  <?
  }
  db_close();
  $empire=null;
  ?>
  <tr bgcolor="#FFFFFF"> 
    <td height="25" colspan="4"><?=$returnpage?></td>
  </tr>
</table>
<?
@include("../../data/template/cp_2.php");
?>

⌨️ 快捷键说明

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