Last active
June 19, 2020 14:53
-
-
Save zerobugs-oficial/9def272d6e6042f8a143d87b3bf890f8 to your computer and use it in GitHub Desktop.
Exibir dados/registros do banco de dados MySQL com PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include("conexao.php"); // caminho do seu arquivo de conexão ao banco de dados $consulta = "SELECT * FROM usuario"; $con = $mysqli->query($consulta) or die($mysqli->error); | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Tutorial</title> | |
</head> | |
<body> | |
<table border="1"> | |
<tr> | |
<td>Código</td> | |
<td>Nome</td> | |
<td>E-mail</td> | |
<td>Data de Cadastro</td> | |
<td>Ação</td> | |
</tr> | |
<?php while($dado = $con->fetch_array()) { ?> | |
<tr> | |
<td><?php echo $dado['usu_codigo']; ?></td> | |
<td><?php echo $dado['usu_nome']; ?></td> | |
<td><?php echo $dado['usu_email']; ?></td> | |
<td><?php echo date('d/m/Y', strtotime($dado['usu_datadecadastro'])); ?></td> | |
<td> | |
<a href="usu_editar.php?codigo=<?php echo $dado['usu_codigo']; ?>">Editar</a> | |
<a href="usu_excluir.php?codigo=<?php echo $dado['usu_codigo']; ?>">Excluir</a> | |
</td> | |
</tr> | |
<?php } ?> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment