Buonasera,
nel forum non ho trovato nulla che mi potesse aiutare, su internet non sono riuscito a comprendere bene il perchè non funzionasse:

Codice PHP:
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/"><html>
<xsl:apply-templates></xsl:apply-templates>
</html></xsl:template>

<xsl:template match="url">
<xsl:value-of select="loc"></xsl:value-of>
<br /><br /></xsl:template>

</xsl:stylesheet>
Come si intuisce (e si capisce dal titolo del topic) il precedente codice dovrebbe permettere al mio file XML (sitemap) di avere uno stile visibile con qualsiasi browser...io per creare questo codice ho seguito la guida di html.it solo che a me non funge..cioè l'output con safari, chrome, ecc (escluso ie) è sempre del tipo:
Codice:
http://localhost:8080/immagini-personali-per-msn/avatar-animali.html 2009-03-05T18:56:58+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-disney.html 2009-02-15T12:09:29+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-dragonball.html 2009-02-15T12:09:33+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-fantasy.html 2009-02-15T12:09:36+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-futurama.html 2009-02-15T12:09:39+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-griffin.html 2009-02-15T12:09:46+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-halloween.html 2009-02-15T12:09:50+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-hanna-e-barbera.html 2009-02-15T12:09:53+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-humor.html 2009-02-15T12:09:57+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-loghi-msn.html 2009-02-15T12:10:00+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-looney-toons.html 2009-02-15T12:10:04+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-macchine.html 2009-02-15T12:10:07+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-manga.html 2009-02-15T12:10:10+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-moto.html 2009-02-15T12:10:14+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-naruto.html 2009-02-15T12:10:16+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-natura.html 2009-02-15T12:10:21+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-paesaggi.html 2009-02-15T12:10:25+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-ragazze.html 2009-02-15T12:10:29+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-sfondi.html 2009-02-15T12:10:33+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-simboli.html 2009-02-15T12:10:37+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-simpson.html 2009-02-15T12:10:40+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-smiley.html 2009-02-16T16:12:43+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-south-park.html 2009-02-15T12:10:48+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-spongebob.html 2009-02-15T12:10:51+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-sport.html 2009-02-15T12:10:55+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-stelle.html 2009-02-15T12:10:58+01:00 0.8 yearly http://localhost:8080/immagini-personali-per-msn/avatar-usa.html 2009-02-15T12:11:00+01:00 0.8 yearly
Perchè non mi funge? Ho sbagliato io a scrivere qualche cosa?

Questa è la riga di codice che utilizzo per collegare l'XSL (o XSLT) al file XML:
Codice PHP:
<?xml-stylesheet type="text/xsl" href="stile.xslt" ?>