Mi consulta es porque soy nuevo en el tema de base de datos, cree una y quiero obtener un listado de la misma, pero no me funciona, me aparece en blanco, alguien sabe por que será? dejo el codigo para que me den una idea
Código PHP:
<html>
<head>
<title>Reporte de Ciudades</title>
</head>
<body>
<h1>Reporte de Ciudades</h1>
<table>
<tr>
<td>ID Ciudad</td>
<td>Nombre</td>
</tr>
<?php
$dbh = @mysql_connect('localhost', 'buenosa_32', '1234tt');
@mysql_select_db('buenosa_busca8');
$tabla = @mysql_query('SELECT * FROM propiedades');
while ($_registro = @mysql_fetch_array($tabla));{
?>
<tr>
<td><?php echo $_registro['ref']; ?></td>
<td><?php echo $_registro['nombre']; ?></td>
</tr>
<?php
}
@mysql_free_result($tabla);
@mysql_close($dbh);
?>
</table>
</body>
</html>