Hola compañeros, como nadie me asistio jeje, busque la manera de hacerlo y se las comparto para quien desee utilizarlo:
Código HTML:
<table>
<tbody>
<?php
$Hoteles= simplexml_load_file('http://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=');
echo '
<tr>
<td style="width: 300px;"><span style="color:#BF3E6F;"><strong><h2>'.$Hoteles->Hotel[0]->NH.'</h2></strong></span><strong>Destino: </strong><a>'.$Hoteles->Hotel[0]->NC.'</a></br><strong>Categoría: </strong><a>'.$Hoteles->Hotel[0]->NS.'</a></br><strong>Ubicación: </strong><a>'.$Hoteles->Hotel[0]->NL.'</a></td>
<td><h2>Tarifa Desde: </h2><center><strong><a style="font-size: 18px;">$ '.$Hoteles->Hotel[0]->LR.' MXN</a></strong></br><a style="font-size: 15px;">Tarifa promedio por noche, por persona.</a></center></td>
</tr>
';
?>
</tbody>
</table>
Solo se le cambian los [0] por 1,2,3 y asi sucesivamente para poder ir jalando un nodo por nodo
, solo una pregunta saben como podria redondear si me da cifras de 4 decimales al siguiente entero? pero seria de este elemento: '.$Hoteles->Hotel[0]->LR.' espero me puedan asistir.
Saludos a todos.