Files
web.ems/wxc2_omc/configuration/bssomc/btsmeasframe.php
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

32 lines
931 B
PHP
Executable File

<?php
//
// Created on: 15 Mar 2001
// Usage : btsmeasframe.php?language="eng|gb"&bssid=0
//
// Function : Contain the btsmeasfilter.php and btsmeasurements.php frame
//
// btsmeasframe.php ___ btsmeasfilter.php(upper)
// \__ btsmeasurement.php (bottom)
//
?>
<?php
include("nocache.inc");
if (!isset($language))
$language="eng";
?>
<html>
<head>
</head>
<frameset rows="16%,*" frameborder=no border=0 framespacing=0>
<frame frameborder=no framespacing=0 name=contents noresize target='upper'
src='btsmeasfilter.php?language=<?=$language?>&bssid=<?=$bssid?>'>;
<frame frameborder=no framespacing=0 name="bottom" src="btsmeasurements.php?language=<?=$language?>&bssid=<?=$bssid?>">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</frameset>
</html>