![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
Aki dejo el codigo:
<html>
<head>
<title>Reporte de Ciudades</title>
</head>
<body>
<h1>Reporte de Ciudades</h1>
<table>
<tr>
<td>Nombre</td>
<td>Dice</td>
</tr>
<?php
$conexion = mysql_connect('localhost', '25926', 'topsecret');
mysql_select_db('25926');
$tabla = mysql_query('SELECT * FROM Comentarios');
while ($registro = mysql_fetch_array($tabla)) {
?>
<tr>
<td><?php echo $registro[‘nombre’]; ?></td>
<td><?php echo $registro[‘dice’]; ?></td>
</tr>
<?php
}
mysql_free_result($tabla);
mysql_close($conexion);
?>
</table>
</body>
</html>
Bueno ahi esta, con esto no puedo siquiera conectarme.... ha y subi la pagina a www.freetzi.com, desde ya muchas gracias
![Riendo](http://static.forosdelweb.com/fdwtheme/images/smilies/risa.png)