Forum Moderators: mack
What my little old php scripting forum scared you? ;)
When you start working with files and forms and start adding more server side functionality to a website you need to start using some type of scripting language.
They are definitely very overwhelming at first so don't take my first line to heart, everyone feels exactly the same way. I hear the same thing as much from long time pros as from those who are new to the game.
ok, where to begin. Well, you need to begin with the form which it sounds like you've done. You can probably do the saving of options in a cookie using javascript actually. That would keep you from needing php right away.
You can set the cookie when the user hits the save button. When the page is loaded you can test for the existence of the cookie and, if it is there, load the data from it into your page.
I looked for a good cookie tutorial but couldn't really find one that I thought would be really good for you. If you took a course it should be in your book or you may have covered it.
Alternatively, you could delve into some ASP and writing the results of your check boxes to a text file, but then you would have to know a bit about hosting sites with IIS (Internet Information Services), which just so happens comes included in Windows 2000 and XP.