Files
web.ems/wxc2_omc/sysDefine/wizardParam/get_table_list.php
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

18 lines
331 B
PHP
Executable File

<?php
require("../../inc/lib.inc");
require("./comm_func.php");
?>
<?php
$tabConf=GetTabConf($sysTypeNo);
$tabCount=count($tabConf);
$response="$step_pos,";
for($i=0;$i<$tabCount;$i++)
{
$response.=$tabConf[$i][OID].",";
$response.=$tabConf[$i][Name].",";
}
$response=substr($response,0,strlen($response)-1);
echo $response;
?>