xsl-list
[Top] [All Lists]

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

2006-06-06 06:03:39


   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[(_at_)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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>