Here are three ways to make form fields read only:
<input type=text READONLY value='Do not touch'> <input type=text DISABLED value='Do not touch'> <input type=text value='Do not touch' onfocus='this.blur();'> |
The first two require "recent" browsers (left as an exercise to the reader); the third requires a JavaScript-enabled browser.