[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] roblems with passing variables from PHP to XSLT


Subject: Re: [xsl] roblems with passing variables from PHP to XSLT
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 6 Jun 2006 14:01:58 +0100

   Looks like you haven't got a match for XMLData, the root node, so add ;

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

that wouldn't be needed, as it is the same as the default template. Also
The root node is never an element, if XMLData is teh top level elemnt
the root node is its parent.

   In your template (in the match='XMLData') you can now do ;

   <xsl:apply-template select="IATA[@code=$code]/ProductItem" />

this is only legal in XSLT2, unfortunately.

david

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


Current Thread