Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/01/2015, 11:55
grossbergsteven
 
Fecha de Ingreso: diciembre-2014
Mensajes: 69
Antigüedad: 9 años, 10 meses
Puntos: 2
Respuesta: AJAX JQUERY colaboración

Hola gracias por responder, si me faltaan llaves y parentesis el problema es que no hace nada aunque le ponga las llaves y parentesis faltantes, ese mismo xml lo procese con php de la siguiente manera:
<?php
$xml = simplexml_load_file("http://ws1.incasports.com/reporte/logrosdeporte.php?liga=nba");
$juegos=$xml->juego;
?>
<table class="logros">
<tr>
<td colspan="3" style="width: 170px"></td>
<td colspan="3" align=center bgcolor="#80BB3E" style="width: 330px">Juego completo</td>
<td colspan="3" align=center bgcolor="#6A9E32" style="width: 330px">Primera Mitad</td>
</tr>
<tr>
<td align=center style="width: 70px">Fecha/Hora</td>
<td align=center style="width: 70px">Ref</td>
<td align=center style="width: 170px">Equipo</td>
<td align=center style="width: 100px">ML</td>
<td align=center style="width: 130px">A/B</td>
<td align=center style="width: 100px">RL</td>
<td align=center style="width: 100px">ML</td>
<td align=center style="width: 130px">A/B</td>
<td align=center style="width: 100px">RL</td>
</tr>
<?php
foreach( $juegos as $node ){
$r1=$node->equipo1['referencia'];
$r2=$node->equipo2['referencia'];
$n1=$node->equipo1['nombre'];
$n2=$node->equipo2['nombre'];
$ml1=$node->equipo1['ml'];
$ml2=$node->equipo2['ml'];
$ab=$node->equipo1['ab'];
$rl1=$node->equipo1['rl'];
$rl2=$node->equipo2['rl'];
$pml1=$node->equipo1['pml'];
$pml2=$node->equipo2['pml'];
$pab=$node->equipo1['pab'];
$prl1=$node->equipo1['prl'];
$prl2=$node->equipo2['prl'];
$hora=$node->equipo1['hora'];
$fecha=$node->equipo1['fecha'];
?>
<tr>
<td align=center><?=date("d/m/Y",strtotime("$fecha"))?></td>
<td align=center><?=$r1?></td>
<td><?=$n1?></td>
<td align=right><?=$ml1?></td>
<td align=right rowspan="2"><?=str_replace(".5","&frac12",$ab)?></td>
<td align=right><?=str_replace(".5","&frac12",$rl1)?></td>
<td align=right><?=str_replace("0","-",$pml1)?></td>
<td align=right rowspan="2"><?=str_replace(".5","&frac12",$pab)?></td>
<td align=right><?=str_replace(".5","&frac12",$prl1)?> </td>
</tr>
<tr>
<td align=center><?=date("g:i a",strtotime("$hora"))?></td>
<td align=center><?=$r2?></td>
<td><?=$n2?></td>
<td align=right><?=$ml2?></td>
<td align=right><?=str_replace(".5","&frac12",$rl2)?></td>
<td align=right><?=str_replace("0","-",$pml2)?></td>
<td align=right><?=str_replace(".5","&frac12",$prl2)?> </td>
</tr>
<?php }
unset($atrib_equi);
?>
</table>


y obtuve lo que estaba buscando, solo que en este caso quiero usar ajax porque los datos van cambiando constantemente.