Código HTML:
<table class="zebra" style="width: auto; height: auto;" border="0" align="left"> <tbody> <?php if($xmlArrayOfHotel=@simplexml_load_file('http://www.e-travelsolution.com/xml/xmlservice1-2.asmx/getHotels?ASOC=test&LANG=ESP&TEXT=1&ORDER=1&CURR=PE&ARRIVE=&DEPART=&HOTEL=&DESTID=1&MAX=&NEW=&CITYID=&CATID=&SEARCH=&ZONEID=&ONLYA=&ONLYC=')){ $objArrayOfHotel=$xmlArrayOfHotel->Hotel; foreach($objArrayOfHotel as $objHotel){ echo ' <tr> <td style="width: 200px;"><span style="font-size: 20px;"><strong><a>'.$objHotel->NH.'</a></strong></span></br><strong>Destino: </strong>'.$objHotel->NC.'</br><strong>Categoría: </strong><a>'.$objHotel->NS.'</a></br><strong>Ubicación: </strong>'.$objHotel->NL.'</br></td> <td><a>Desde: </a><center><strong><a>$ '.$objHotel->PR.' MXN</a></strong></br><a style="font-size: 12px;">Promedio Por Noche</a></center></td> </tr> '; } //liberamos el objeto de la memoria unset($xmlArrayOfHotel); }else{ echo ' <tr> <td colspan="5" align="center">Hoteles No Disponibles.</td> </tr> '; } ?> </tbody> </table>
Muchas gracias por su amable ayuda