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

24 lines
689 B
PHP
Executable File

<?php
require("../../inc/header.inc");
$sysTypeNo = $_REQUEST['sysTypeNo'];
$dataTypeNo = $_REQUEST['dataTypeNo'];
?>
<frameset rows="75,*" framespacing="0" border="0" frameborder="0">
<?php
echo "<frame name=\"header\" scrolling=\"auto\" noresize target=\"main\" src=\"subscriberListUp.php?sysTypeNo=$sysTypeNo&dataTypeNo=$dataTypeNo\" marginwidth=\"0\" marginheight=\"0\">";
echo "<frame name=\"main\" src=\"subscriberListDown.php?sysTypeNo=$sysTypeNo&dataTypeNo=$dataTypeNo\" scrolling=\"auto\"target=\"_self\" marginwidth=\"0\" marginheight=\"0\">";
?>
<noframes>
<body>
<p>此网页使用了框架,但您的浏览器不支持框架。</p>
</body>
</noframes>
</frameset>
</html>