Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. include("conexao.php");
  3.  
  4. $placa = $_POST['placa_desejada'];
  5.  
  6. $sql = "SELECT * FROM veiculo WHERE placa = $placa";
  7.  
  8. //buscando dados
  9. $select = $conn->query($sql) or die($conn->error);
  10.  
  11. //Exibindo dados
  12. while($dados = $select->fetch_array()){?>
  13. <!-- estrutura da tabela-->
  14. <td><?php echo($dados['km_abastecimento']);?></td>
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement