Thanks to you all folks.
This may take a while (and be assured when I sort out my problem I'll resolve the thread). I'm experimenting with all of this in between learning (or trying to learn) tons of other stuff at lightning speed.
rikmoncur Thanks for the quick answer!
dagon, You picked up on the sign of how clueless I am. Your point about double quoting my html attributes is well taken. I would ordinarily double quote html attributes when writing it by hand, but wasn't thinking about how the single quote in my php would go bad when it encountered the single quote in the variable. Of course the easy answer is to escape the double quotes in my php not the single quote in Alzheimer's.. doh!
Now that the form is passing the whole word with the apostrophe I'm off to figure out how to manage it when it gets passed to the form processor and the db. So far I keep getting mysql errors when trying to use mysql_real_escape_string(). Though a connection is there and working, it complains that the function has been denied access. Obviously, I need to do some more figuring out on that one.
bradgrafelman THEN I will see what htmlspecialchars() can do for me. While checking data in this instance is not particularly important, it would be nicer not to worry about the odd character slipping in (not to mention I am aware of the problems of code injection and such and will want to be sure to learn enough to protect the data before sending anything into production).
I can't tell you all how much I appreciate you putting up with this newbie.