Not exactly right. You have to write &-s as &-s in (X)HTML _only_. It's another coding: HTML parameter value coding.
<a href="index.cgi?name=AT%26T&id=1">...</a>
The value of the link's href parameter (the URL, what you will see in the browser's location bar) will be "index.cgi?name=AT%26T&id=1", the value of name will be AT&T, and the value of id will be 1. | [reply] |