<div class="panel-heading"> <h3 class="panel-title"><i class="glyphicon glyphicon-th-list"></i> Voluntarios</h3> </div> <div class="panel-body"> <table class="table table-hover"> <tr> <th>Nome do Voluntario</th> <th>Telefone</th> <th>Atividade a Desempenhar</th> <th>Ação</th> <th>Status</th> </tr> <?php include "../cls/voluntarioClass.php"; $disponibilidade = new voluntarioClass(); $disponibilidade->getAllDisponibilidade(); $result = $disponibilidade->getConsulta(); if (!$result) { throw new Exception("Database Error [{$this->database->error}] {$this->database->error}"); } else { while ($linha = $result->fetch_assoc()) { if ($linha['status'] == 0) { $st = "Livre"; } if ($linha['status'] == 1) { $st = "Ocupado"; } if ($linha['status'] == 2) { $st = "Esta sendo Voluntario"; } ?>