Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML ERROR!! Pls Help

Status
Not open for further replies.

Forri

Programmer
Joined
Oct 29, 2003
Messages
479
Location
MT
Hi

I have this line which is giving me problems when i try to show the xml!

Code:
<Link>index.php?pageid=appl[b]&type=0[/b]</Link>

The bold part is the problem! any ideas why and how can i solve it!

Thanks
Nick
 
Hi,

the & is the problem

//first: declare output is html
<xsl:output method="html" />

//then in between your link statement
<xsl:text disable-output-escaping="yes">&#38;</xsl:text>

that is & in ascii
:-)
cu
bettyboo

 
Hi,

the & is the problem

//first: declare output is html
<xsl:output method="html" />

//then in between your link statement
<xsl:text disable-output-escaping="yes">&#38;</xsl:text>

that is & in ascii
:-)
cu
bettyboo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top