Primero configuré lo del sitio, la carpeta raíz, después para el servidor de pruebas, nose cúal es la carpeta del servidor. Estoy usando el pack Xampp, y tampoco se que escribir en prefijo de URL. Ójala me pudieran ayudar.
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
$conexion = mysql_connect('localhost', 'usuario', 'contraseña');
mysql_select_db('inmobiliaria');
$tabla = mysql_query('SELECT * FROM ciudades');
while ($registro = mysql_fetch_array($tabla)) {
?>
<tr>
<td>1</td>
<td>Madrid</td>
</tr>
<?php
}
mysql_free_result($tabla);
mysql_close($conexion);
?>
</table>
</body>
</html>