I have a reacurring problem. I code nice standards compliant code only to have it fail due to ampersands within some of the hyperlink urls.

Does anyone know of a work around or hack for this.

Thanks

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

You should URL Encode the hyperlinks, so all characters are turned into a valid ASCII format and don't contain any (X)HTML entities.

For C# use HttpUtility.UrlEncode, for PHP urlencode, for JavaScript encodeURI, etc... Finding the right method for the language you're using shouldn't be that hard.

link|improve this answer
3  
htmlspecialchars (php.net/manual/en/function.htmlspecialchars.php) is actually better than urlencode for this. – ceejayoz Mar 20 '10 at 1:17
1  
...I'd go as far as to call it necessary. urlencode() is the wrong approach. An ampersand has a special meaning in URLs (GET parameter separator) and urlencode() would remove that meaning by escaping them. We don't want to encode the ampersands in a URL context. We want to encode the ampersands in an HTML context. htmlspecialchars() does that. – pinkgothic Sep 1 '10 at 11:19
feedback

I code nice standards compliant code only to have it fail due to ampersands within some of the hyperlink urls.

Unescaped ampersands in URLs (or anywhere else, if they're not part of an HTML entity!) aren't "nice standards compliant code".

Turn them into & and you can accurately claim to have done this.

link|improve this answer
Grammar Nazi: /replace aren't with isn't – Henri Watson Mar 19 '10 at 22:26
2  
+1 Also good to know: An unmasked & will count as invalid even in JavaScript blocks, unless they are wrapped in CDATA tags. – Pekka Mar 19 '10 at 23:02
Thanks for the responses guys. URL encoding is a new one on me, I'm looking into it. There's a good link to the W3C URL encoding page provided by Ronald above. – Mr.K Mar 20 '10 at 11:48
feedback

Did you make them & in the links like this?

&
link|improve this answer
feedback

CDATA works wonders where you have & in javascript strings..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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