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

📄 paycard_manage.php

📁 phpcms网站管理系统  很不错的 有需要的就下载看看八 
💻 PHP
字号:
<?php 
defined('IN_PHPCMS') or exit('Access Denied');
include admintpl('header');
?>
<body>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="10">
  <tr>
    <td ></td>
  </tr>
</table>
<?=$menu?>
<form method="post" name="myform">
<table cellpadding="2" cellspacing="1" class="tableborder">
  <tr>
    <th colspan=11>支付卡列表</th>
  </tr>
<tr align=center>
<td width="5%" class="tablerowhighlight">选中</td>
<td width="14%" class="tablerowhighlight">卡号</td>
<td width="9%" class="tablerowhighlight">密码</td>
<td width="6%" class="tablerowhighlight">面值</td>
<td width="10%" class="tablerowhighlight">开始日期</td>
<td width="10%" class="tablerowhighlight">截止日期</td>
<td width="7%" class="tablerowhighlight">状态</td>
<td width="11%" class="tablerowhighlight">使用者</td>
<td width="16%" class="tablerowhighlight">充值时间</td>
<td width="12%" class="tablerowhighlight">充值IP</td>
</tr>
<?php 
if(is_array($paycards))
{
foreach($paycards as $paycard){ ?>
<tr align=center onmouseout="this.style.backgroundColor='#F1F3F5'" onmouseover="this.style.backgroundColor='#BFDFFF'" bgColor='#F1F3F5'>
<td class=forumrow><input type="checkbox" name="id[]"  id="id[]" value="<?=$paycard['id']?>"></td>
<td class=forumrow><?=$paycard[cardid]?></td>
<td class=forumrow><?=$paycard[password]?></td>
<td class=forumrow><?=$paycard[price]?>元</td>
<td class=forumrow><?=$paycard[adddate]?></td>
<td class=forumrow><?=$paycard[enddate]?></td>
<td class=forumrow><?=$paycard[status]?></td>
<td class=forumrow><a href="" target="_blank"><?=$paycard[username]?></a></td>
<td class=forumrow><?=$paycard[regtime]?></td>
<td class=forumrow><?=$paycard[regip]?></td>
</tr>
<?php } 
}
?>
</table>
<table width="100%" height="25" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="10%"><input name='chkall' type='checkbox' id='chkall' onclick='checkall(this.form)' value='checkbox'>全选/反选</td>
    <td>
<input type="submit" name="submit" value=" 删除选定的卡号 " onClick="document.myform.action='?mod=<?=$mod?>&file=<?=$file?>&action=delete'">&nbsp;&nbsp;
<input type="submit" name="submit" value=" 删除所有过期卡号 " onClick="document.myform.action='?mod=<?=$mod?>&file=<?=$file?>&action=deletetimeout'">&nbsp;&nbsp;
<input type="submit" name="submit" value=" 删除所有已使用的卡号 " onClick="document.myform.action='?mod=<?=$mod?>&file=<?=$file?>&action=deleteused'">&nbsp;&nbsp;

    </td>
  </tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="30">
  <tr>
    <td align="center"><?=$pages?></td>
  </tr>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

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