Postando o script do houselist meu
<body><title>House List</title>
</body>
<?
// ---------------------------------------------- \\
// ESSE SCRIPT \\
// È FEITO POR BIZUGO \\
// ---------------------------------------------- \\
$otserv_dir = "DIRETORIO APARTIR DO WWW";
echo '<center><center><h1 class="titulo">Houses List</h1></center><br><br>';
echo '<center>
<table cellpadding="4" cellspacing="0" border="black">
<tr>
<td width="200" class="tabela_titulo"><h2>House Name</h2></td>
<td width="200" class="tabela_titulo"><h2>Owner Stats</h2></td>
</tr>
';
$dir = dir($otserv_dir . 'data/houses/');
while( $arquivo = $dir -> read() ) {
$house = explode('.xml', $arquivo);
$house = $house[0];
if( $house != '.' && $house != '..' ) {
$owner = file_get_contents($otserv_dir . 'data/houses/' . $house . '.xml');
$owner = explode('"', $owner);
$owner = $owner[9];
if($owner == "")
$owner = '<h6>No Owner</h6>';
echo '
<tr>
<td><center><h4>' . $house . '</h4></td>
<td><center><h4>' . $owner . '</h4></td>
</tr>
';
}
}
echo '</table>';
?>