0
Staff I commented in the code below what I need I hope you understand me if someone can give a force here thank you
I know very little of php thank you !
<?php
// Fazemos o Comando que queremos no Mikrotik
if ($API->connect($ip, $login, $senha)) {
$ARRAY = $API->comm("/ip/hotspot/user/print");
// Preparamos o Loop
for ($i = 0; $i < count($ARRAY); ++$i)
{
$resultado = $ARRAY[$i];
//print_r($ARRAY);
?>
<?php echo $resultado['limit-uptime'];?>
acima vem as respostas no echo exemplo:
usuario: 30m
usuario menor que 29m
quero apenas que lista os usuários que que estao com o tempo menor que 30m
<?php } /* Fechamos o While */ ?>
<?php } /* Fechamos o IF */ ?>
$resultado['limit-uptime']
prints exactly thatusuario: 30m
? Or just the value?– Wees Smith