OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   RE: [xml-dev] How to transfer xml to code by xslt?

[ Lists Home | Date Index | Thread Index ]

It helps to explain why you are finding this problematic. I think it's just
 
<xsl:tempate match="execute-query">
$sql = '<xsl:value-of select="."/>';
</xsl:template>
 
Everything else is handled automatically by the built-in template rules.
 
Michael Kay


From: LUKE [mailto:luke@tc.program.com.tw]
Sent: 03 April 2006 04:22
To: xml-dev@lists.xml.org
Subject: [xml-dev] How to transfer xml to code by xslt?

XML Document:
 
<logic>
if ($a==1){
<execute-query>
<![CDATA[
SELECT * FROM address WHERE id =$CGI_paraname
]]>
</execute-query>
}else{
<execute-query>
<![CDATA[
SELECT * FROM address2 WHERE id =$CGI_paraname
]]>
</execute-query>
}
</logic>

I want to transfer to using *.xsl.
 
if ($a==1){
$sql='SELECT * FROM address WHERE id =$CGI_paraname';
}else{
$sql='SELECT * FROM address2 WHERE id =$CGI_paraname';
}





 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS