init web ems all

This commit is contained in:
agtuser
2024-09-27 17:13:36 +08:00
parent 81c97acbe9
commit 5cc56f8078
4263 changed files with 798779 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
require("../../inc/lib.inc");
$k8e1Table = 'param_' . $sysNo;
$k8e1Db = "OBJ_111";
if($flag=='sigSlot')
{
$selSql = "select initValue from $k8e1Table
where level_1='2' and level_2='10' and level_3='2' and instanceNo='$subSysNo' ";
$result = mysqli_query($pubConn,$selSql);
$row = mysqli_fetch_array($result);
$sigSlot = hexdec($row[initValue]);
if($sigSlot!=$cmpValue)
echo "reset";
else
echo "notReset";
}
else
{
echo "reset";
}
?>