Re: Character entities and URIs

CD> Won't using &amp break the cgi script?

Always use & between cgi parameters in hrefs. Not only is it required,
but browsers may break if you don't.

For example, in Netscape 3.0, if you follow a link marked up with invalid
HTML like:

  <a href="book.pl?chapter=1&section=2">

it would try to navigate to "book.pl?chapter=1§ion=2". The correct way to
mark it up:

  <a href="book.pl?chapter=1&amp;section=2">

works in all versions of Netscape.

Received on Wednesday, 11 October 2000 20:58:18 UTC