<tr> <th>Destaque Tela Principal</th> <th>Destaque Tela Categoria</th> <th>Categoria</th> <th>Valido até </th> <th>Imagem</th> <th>Promoção</th> <th>Empresa</th> <th class="text-center">Ações</th> </tr> </thead> <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['btnfiltro'])) { $result = $class->listarOfertaEmpresaFiltro($_POST['ativa'], $_POST['expirada'], $_POST['datainicial'], $_POST['datafinal'], $_POST['descricao']); } else { $result = $class->listarOfertaEmpresa(); } } else { $result = $class->listarOfertaEmpresa(); } while ($row = mysqli_fetch_assoc($result)) { $id = $row['id']; $promocao = $row['promocao']; $empresa = $row['empresa']; $principal = $row['principal']; $principalCategoria = $row['principalcategoria']; $imagem = $row['foto1']; $date = new DateTime($row['datafinal']); $datafinal = $date->format('d.m.Y');