'can someone explain to me why the last row is not shown?

For some reason "aktive_app_benutzer is not shown in the table does anyone know why?

  echo '<div class="card bg-light mb-3">
            <div class="card-header" style=background-color:dee2e6>
              <li>Systemname: '.$key.'</li>
            </div>
            <div class="card-body"style=background-color:dee2e6 style=color:red <div class="mt-4">
              <li>Letzter Login: '.$d['last_login'].'</li>
              <li>Aktive GPS Nutzer: '.(float)$d['active_gps'].'</li>
              <li>Inaktive GPS Nutzer: '.(float)$d['inactive_gps'].'</li>
              <li>Inaktive App Benutzer: '.(float)$d['inaktive_app_benutzer'].'</li>
              <li>Inaktive Backend Benutzer: '.(float)$d['inaktive_backend_benutzer'].'</li>
              <li>Aktive Backend Benutzer: '.(float)$d['aktive_backend_benutzer'] += (float)$d['aktive_gebuchte_backend_benutzer'].'</li>
              <li>Aktive App Benutzer: '.(float)$d['aktive_app_benutzer'] += (float)$d['aktive_gebuchte_app_benutzer'].'</li>
            </div>
          </div>';
  }

This is what it shows on the website [1]: https://i.stack.imgur.com/dbGuF.png



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source