vote up 0 vote down star

The following link to a URL in my application is giving me an XML Parsing Error on the second equals sign when I try to view the page.

<a href="http://www.example.com/admin/banning.php?do=banuser&u=3">Ban User</a>

I think the problem is the ampersand in the URL. If I encode the ampersand the parsing error goes away but the URL no longer functions. Is there an easy way to get URLs like this to work in a page being served as XHTML?

flag

2 Answers

vote up 2 vote down check

Encoding the ampersand is the correct way. If the URL doesn't work, something else must be wrong.

link|flag
What I don't get is that pasting the URL into my browser gets the correct result yet when I encode the ampersand using %26 it breaks. – Urfe Apr 5 at 10:39
Nevermind, when I use &amp; it all work. :) Many thanks! – Urfe Apr 5 at 10:41
2  
%26 is URL encoded. &amp; is XML encoded - hence why the latter works. – Peter Boughton Apr 5 at 11:27
vote up 0 vote down

you have to use &amp; instead of & in any xhtml-document

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.