Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //FUNÇÃO QUE CONVERTE O FORMATO DA DATA PARA O FORMATO BRASILEIRO
- function Converte_Data($data){
- $data_nova = implode(preg_match("~\/~", $data) == 0 ? "/" : "-", array_reverse(explode(preg_match("~\/~", $data) == 0 ? "-" : "/", $data)));
- return $data_nova;}
- // Conectando ao banco de dados:
- include_once("conexao.php");
- // Recebendo os dados a pesquisar
- $pesquisa = $_POST['categoria'];
- ?>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
- <link href="estilos/estilo.css" rel="stylesheet">
- <title>Resultado da pesquisa</title>
- </head>
- <body>
- <div class="container">
- <img src="/imagens/leenkstopo.png" width="1000" alt="Responsive image" class="img-fluid">
- <!-- Criando tabela e cabeçalho de dados: -->
- <table>
- <tr>
- <th>Categoria</th>
- <th>Aplicação/Serviço</th>
- <th>Data de cadastro</th>
- <th>Hora</th>
- <!-- <th><center>Ações</center></th>-->
- </tr>
- <!-- Preenchendo a tabela com os dados do banco: -->
- <?php
- $sql = "SELECT * FROM tabela_maislegal WHERE categoria = '$pesquisa' ORDER BY data_cadastro DESC, hora_cadastro DESC";
- $resultado = mysqli_query($conn,$sql) or die("Erro ao retornar dados");
- // Obtendo os dados por meio de um loop while
- while ($registro = mysqli_fetch_array($resultado))
- {
- $categoria = $registro['categoria'];
- $nome = $registro['nome'];
- $url = $registro['url'];
- $data_cadastro = $registro['data_cadastro']; ?>
- <td><?php echo $registro['categoria']; ?></td>
- <td><a href='<?php echo $registro["url"]; ?>'target="_blank"><?php echo $registro["nome"]; ?></a></td>
- <td><?php echo converte_data($registro['data_cadastro']); ?></td>
- <td><?php echo $registro['hora_cadastro']; ?></td>
- <!-- <td><?php echo "<a href='del.php?id=" . $registro['id'] . "'>Apagar</a>"; ?> | <?php echo "<a href='edit_usuario.php?id=" . $registro['id'] . "'>Editar</a>"; ?></td>-->
- <?php
- echo "</tr>";
- }
- mysqli_close($conn);
- echo "</table>";
- ?>
- </body>
- <br>
- <a href="index.php" class="myButton">Voltar</a>
- <style type="text/css">
- .myButton {
- box-shadow: 3px 4px 0px 0px #1564ad;
- background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
- background-color:#79bbff;
- border-radius:5px;
- border:1px solid #337bc4;
- display:inline-block;
- cursor:pointer;
- color:#ffffff;
- font-family:Trebuchet MS;
- font-size:17px;
- font-weight:bold;
- padding:8px 15px;
- text-decoration:none;
- text-shadow:0px 1px 0px #528ecc;
- }
- .myButton:hover {
- background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
- background-color:#378de5;
- }
- .myButton:active {
- position:relative;
- top:1px;
- }
- </style>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement