Shastry,
Thanks, that did the trick. I also tried to apply this to radio button entries, but it didn't work. What I currently have is:
<tr><td> <input type="radio" name="title" value="Captain"> Captain <input type="radio" name="title" value="First Officer"> First Officer </td></tr>
and when I applied your textarea fix it looked like:
<tr><td> <input type="radio" name="title" value="Captain"> Captain <input type="radio" name="title" value="First Officer"> First Officer <? echo $title; ?> </td></tr>
What this caused to happen was when all fields were not filled in, but the "title" field was filled in, and the form was submitted, the actual value (Captain or First Officer) was echoed rather than the appropriate radio button filled in. It looked like:
(button) Captain (button) First OfficerCaptain or
(button) Captain (button) First OfficerFirst Officer
Thanks again.