Hello! I have a standard html/css website set up, and I would like to offer special content just for registered users. I'm wondering if converting to a CMS would handle this, or if there's another option of having a new webpage(html) appear for logged in registrants. Any direction on this would be HUGE! Thanks
if you're using a pre-built open source CMS chances are that it provides a different page or at least a different set of options to registered users.
if you know how to do it, build a login menu (with all the back-end support of a database and a registration form) and set a rule for the registered users to be bounced off to another page (the html you want them to). If what you need to do is show a different set of options (an extra menu) you can easily use your existing pages and add a rule in each of them to shot those options only to registered users ( php example: after the login, register the username along with other necessary information as a session then add a function to each page that checks for a set username session variable and if found -> offer the extra options.)
browsing through session functions on php.net you might want to have a look at user comments. Some of them provide very useful information and work examples.