Ver Mensaje Individual
  #8 (permalink)  
Antiguo 01/04/2013, 18:52
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 amigo mira esto aver si se puede hacer lo que me indica


ya tengo esto

Código PHP:
Ver original
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Servicio Up</title>
  5. </head>
  6.  
  7. <body>
  8. <table width="200" border="1">
  9.   <tr>
  10.     <td align="center">Canales Activos</td>
  11.   </tr>
  12. <?php  
  13.  
  14. $ip = "192.168.1.1";
  15. $port = "5050";
  16. $user = "user";
  17. $pass = "pass";
  18.  
  19. $xml = simplexml_load_file("http://".$user.":".$pass."@".$ip.":".$port."/archivo.xml");
  20.  
  21. $user = "user-active";
  22. $users = "user-view";
  23.  
  24. foreach($xml->$user->provider->$users as $run) {
  25.  
  26.   $sid = (string)$run->attributes()->sid;
  27.  
  28.   echo "<tr>";
  29.   echo "<td align=\"center\">";
  30.   echo $sid;
  31.   echo "</td>";
  32.   echo "</tr>";
  33. }
  34.  
  35.  ?>
  36. </table>
  37. </body>
  38. </html>

es que el archivo anda protegido