Ver Mensaje Individual
  #9 (permalink)  
Antiguo 02/04/2013, 08:32
xoceunder
 
Fecha de Ingreso: junio-2012
Ubicación: En el Mundo
Mensajes: 766
Antigüedad: 12 años, 5 meses
Puntos: 10
Respuesta: duda en datos repetido en xml

ok haora si me funciono con esto

Código PHP:
Ver original
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5.  
  6. <body>
  7. <table width="250" border="1" align="center">
  8.   <tr>
  9.     <td align="center">Canales Activos</td>
  10.   </tr>
  11. <?php  
  12. $ip = "192.168.1.1";
  13. $port = "5050";
  14. $user = "user";
  15. $pass = "pass";
  16.  
  17. $xml = simplexml_load_file("http://".$user.":".$pass."@".$ip.":".$port."/archivo.xml");
  18.  
  19. // Leer los Sid Activos del XML
  20.  
  21. $sid = $xml->xpath("//user-view[not(@sid=preceding-sibling::user-view/@sid)]");
  22.  
  23. foreach ($sid as $v) {
  24.   echo "<tr>";
  25.   echo "<td align=\"center\">";
  26.   echo $v->attributes()->sid;
  27.   echo "</td>";
  28.   echo "</tr>";
  29. }
  30.  
  31. ?>
  32. </table>
  33. </body>
  34. </html>

haora otra cosita podria ser posible colocar en orden de menor a manor