Files
web.ems/wxc2_omc/account/prepaidCardMng/usedCardListUp.php
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

87 lines
2.3 KiB
PHP
Executable File

<?php
/*********************************************************
程序说明:
功能说明:列表显示充值卡信息
调用关系:调用: header.inc
被调用:
变量说明:
作者:
修改注释:
NO.1
姓名:
时间:
修改说明:
*********************************************************/
require("../../inc/header.inc");
$DEBUG=0;
$helpId="4.7";
if($sysTypeNo == 360)
{
$db='PPS_DB';
$table_name="used_card_info"; //查询的表名
}
else
{
$db='RCM_RC_DB';
$table_name="used_card_info"; //查询的表名
}
?>
<base target="main">
<body topmargin=16 leftmargin="15" rightmargin="10" onload="javascript:adjust_frame('up');" onresize="javascript:adjust_frame('up');" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;">
<form name="selectform" action="./usedCardListDown.php">
<?php
adjust_head_frame("up");
adjust_title_head_frame("up");
echo "<table id=\"table_up\" border=\"0\" width=\"100%\">";
echo "<tr>";
echo "<td width=\"50%\" align=\"left\">";
echo "Log > Used recharge card";
echo "</td>";
echo "<td width=\"50%\" align=\"right\" title=\"Help\">";
showHelp($helpId);
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td align=\"left\">";
echo "<select size=\"1\" name=\"selKeyFieldName\" >";
echo "<option value=\"card_no\" selected>Card no.</option>";
echo "<option value=\"msisdn_used\">Recharged number</option>";
echo "</select>";
?>
<input type="text" name="selKeyValue" size="20" onBlur="this.value=ignoreSpaces(this.value);" size="20" style="font-family: Verdana; font-size: 8pt">&nbsp;&nbsp;
</nobr>
<span onClick="javascript:document.selectform.submit();" style="cursor:hand">
<IMG align=absBottom border=0 src="../../images/search.gif" >&nbsp;<?php echo "$strSearch"; ?>
</span>
<input type="hidden" name="bgn_num" value="<?php echo $bgn_num; ?>">
<input type="hidden" name="number_of_records" value="<?php echo $number_of_records; ?>">
<input type="hidden" name="sort_field" value="<?php echo $sort_field; ?>">
<input type="hidden" name="sysTypeNo" value="<?php echo $sysTypeNo; ?>">
<?php
echo "</td>";
echo "<td align=\"right\">&nbsp;";
echo "</td>";
echo "</tr>";
echo "</table>";
adjust_title_tail_frame("up");
adjust_content_head_frame("up");
adjust_content_tail_frame("up");
?>
</form>
</body>
</html>