DiegoM Posted September 29, 2011 Report Share Posted September 29, 2011 eai galera, to usando esse código para ler um arquivo em XML e imprimir via php na tela.<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <?php $xml = simplexml_load_file("http://www3.uol.com.br/parceiros/noticias/clic-doutor.xml"); $z = 0; foreach($xml->item as $item) { if ($z == 5) { break;} ?> <td valign="top" align="center" width="19%"><a href="<?php echo urldecode($item->url); ?>"><?php echo $item->title; ?></a></</td> <td valign="top" align="center" class="sep-news">•</td> <?php $z++;} ?> </tr> </table> No chrome e no IE está funcionando normalmente, mas no Firefox ele está gerando o link asssim http://localhost/meusite/%0A%09%09%09http://noticias.uol.com.br/ultnot/cienciaesaude/ultimas-noticias/efe/2011/09/28/comecam-pesquisas-em-antimateria-que-podem-desvendar-origem-do-universo.jhtm%0A%09%09alguém tem idéia o que pode ser?fico no aguardo e obrigado. Quote Link to comment Share on other sites More sharing options...
0 Romero Dias Posted September 30, 2011 Report Share Posted September 30, 2011 Diego,fiz um teste aqui e funcionou no FF,IE,Chome<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="pt-br"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> </head> <body><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <?php $xml = simplexml_load_file("http://www3.uol.com.br/parceiros/noticias/clic-doutor.xml"); $z = 0; foreach($xml->item as $item) { if ($z == 5) { break;} ?> <td valign="top" align="center" width="19%"><a href="<?php echo urldecode($item->url); ?>"><?php echo $item->title; ?></a></</td> <td valign="top" align="center" class="sep-news">•</td> <?php $z++;} ?> </tr> </table> </body> </html> Quote Link to comment Share on other sites More sharing options...
0 DiegoM Posted September 30, 2011 Author Report Share Posted September 30, 2011 (edited) Oxi, que estranho Romero, aqui não quer funcionar de jeito nenhum e no meu código também está com chasert utf8e é só no FF que da problema, :S Edited September 30, 2011 by DiegoM Quote Link to comment Share on other sites More sharing options...
0 DiegoM Posted September 30, 2011 Author Report Share Posted September 30, 2011 Consegui resolver, dava bugando por causa de 1 marquee em jquery que eu tava usando, tirei e funcionou de boa :// Quote Link to comment Share on other sites More sharing options...
Question
DiegoM
eai galera, to usando esse código para ler um arquivo em XML e imprimir via php na tela.
No chrome e no IE está funcionando normalmente, mas no Firefox ele está gerando o link asssimalguém tem idéia o que pode ser?
fico no aguardo e obrigado.
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.