Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/05/2004, 03:03
Avatar de Helbira
Helbira
 
Fecha de Ingreso: octubre-2001
Ubicación: Sevilla, España
Mensajes: 1.228
Antigüedad: 22 años, 6 meses
Puntos: 5
archivo.xml

Código PHP:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml
-stylesheet type="text/xsl" href="archivo.xsl"?>
<node>
   <myfield>
      <p>some text<br/>more here</p>
   </myfield>
</node>

archivo.xsl

Código PHP:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="node">
   <xsl:apply-templates select="myfield"/>
</xsl:template>

<xsl:template match="myfield">
  <xsl:copy-of select="@*|node()"/>
</xsl:template>

</xsl:stylesheet>