Como mostrar registros tabularmente de Mysql por medio de php

¿

<?php
//$mysqli=new mysqli("localhost","root","Fiscaliza3","sistema");
$host="127.0.0.1";
$usuario="root";
$constraseña="1234";
$base="sistema";
$conexion=new mysqli($host,$usuario,$constraseña,$base);
if ($conexion -> connect_errno)
{
die("fallo la conexion:(".$conexion -> misqly_connect_errno().")".$conexion->mysqli_connect_error());
///////Consulta a la base de datos//////////////
$contactos='Select id,Nombre_usuario,direccion,email,numtelcasa,numcelper,numteloficina,direccionoficina, numceloficina, descripcion FROM contactos';
//$contactos="SELECT * FROM Contactos";
$resContactos=$conexion->query($contactos);
}
?>
<html lang="es">
<head>
<title>Mostrar Registros</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width", initial-scale=1, maxium-scale="1"/>
<link href="css/estilos.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
</head>
<body>
<header>
<div class="alert alert-info">
<h2>Mostrado de registros</h2>
</div>
</header>
<section>
<table class="table">
<!--instanciamos la clase -->
<tr>
<th>Id_contacto</th>
<th>Nombre_contacto</th>
<th>Direccion<th>
<th>Email</th>
<th>Numero_telefonico_casa</th>
<th>Numero_celular_personal</th>
<th>Numero_telefonico_oficina</th>
<th>Direccion_oficina</th>
<th>Numero_celular_oficina</th>
<th>Descripcion</th>
</tr>
<?php
while($registroContactos=$resContactos->fetch_array(MYSQLI_ASSOC))
//while($registroContactos=$resContactos->fetch_array())
{
echo'<tr>
<td>'.$registroContactos['id'].'</td>
<td>'.$registroContactos['Nombre_usuario'].'</td>
<td>'.$registroContactos['direccion'].'</td>
<td>'.$registroContactos['email'].'</td>
<td>'.$registroContactos['numtelcasa'].'</td>
<td>'.$registroContactos['numcelper'].'</td>
<td>'.$registroContactos['numteloficina'].'</td>
<td>'.$registroContactos['direccionoficina'].'</td>
<td>'.$registroContactos['numceloficina'].'</td>
<td>'.$registroContactos['descripcion'].'</td>
</tr>';
}
?>
</table>
</section>
<footer>
</footer>
</body>
</html>

Añade tu respuesta

Haz clic para o