Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/08/2010, 20:07
Jaimetomas
 
Fecha de Ingreso: agosto-2010
Mensajes: 1
Antigüedad: 13 años, 8 meses
Puntos: 0
Ayuda codigo RSS, HTML, PHP

Necesitaría ayuda con un mix de códigos, en primer lugar tengo el siguiente que seria la pagina html:

[URL="http://www.scribd.com/doc/35445408/rss-htm"]http://www.scribd.com/doc/35445408/rss-htm[/URL]

En segundo lugar el .JS que llamo (gfeedfetcher.js)

[URL="http://www.scribd.com/doc/35445356/gfeedfetcher-js"]http://www.scribd.com/doc/35445356/gfeedfetcher-js[/URL]

Lo que necesito es que este código:

Cita:
<script type="text/javascript">

var newsfeed=new gfeedfetcher("example3", "example3class", "_self")
newsfeed.addFeed("Perfil", "http://www.perfil.com/rss/ultimomomento.xml") //Specify "label" plus URL to RSS feed
newsfeed.addFeed("La Nación", "http://www.lanacion.com.ar/herramientas/rss/index.asp?origen=2") //Specify "label" plus URL to RSS feed
newsfeed.addFeed("Clarin", "http://www.clarin.com/rss/") //Specify "label" plus URL to RSS feed
newsfeed.addFeed("Pagina 12", "http://www.pagina12.com.ar/diario/rss/ultimas_noticias.xml") //Specify "label" plus URL to RSS feed
newsfeed.addFeed("El Argentino", "http://www.elargentino.com/Highlights.aspx?Content-Type=text/xml&ChannelDesc=Home") //Specify "label" plus URL to RSS feed
newsfeed.addFeed("OLE", "http://www.ole.com.ar/rss/") //Specify "label" plus URL to RSS feed
newsfeed.displayoptions("label Datetime") //show the specified additional fields
newsfeed.setentrycontainer("div") //Display each entry as a paragraph
newsfeed.filterfeed(40, "date") //Show 8 entries, sort by date
newsfeed.init() //Always call this last

</script>
Me abra la pagina de la siguiente manera:

Cita:
<a href="lanacion.htm" onclick="return hs.htmlExpand(this, {
objectType: 'iframe', width: '1350', height: '1000',
creditsPosition: 'bottom left',
wrapperClassName: 'titlebar' } )">Rss Title Name</a>
O general un archivo PHP que quede de la siguiente manera:

nombre.php?=RSSTITLE y que lo que sigue la ?= sea lo generado por el 1er código, siendo que el nombre.php muestre su contenido adentro de un div.

No se si se entiende.

Si alguien me puede ayudar, se lo agradecería.