Datasheet
Api php template
151
{
$regtable = $ARRAY[$i];
if ($regtable['running']=="true")
{
echo "<font color=#04B404 size=2>" .
$regtable['running'] . "</font><br>";
}else{
echo "<font color=#FF0000 size=2>". $regtable['running']
."</font><br>";
}
}
echo "</td><td>";
for ($i=0; $i<250; $i++)
{
$regtable = $ARRAY[$i];
if ($regtable['disabled']=="true")
{
echo "<font color=#04B404 size=2>" .
$regtable['disabled'] . "</font><br>";
}else{
echo "<font color=#FF0000 size=2>".
$regtable['disabled'] ."</font><br>";
}
}
echo "</td><td>";
echo "</table>";
echo "<br />Debug:";
echo "<br />";
print_r($ARRAY);
$API->disconnect();
}
?>










