Skip to main content
Known Participant
June 20, 2007
Question

Dynamic Websites & User "account pages"

  • June 20, 2007
  • 2 replies
  • 429 views
What would be the easiest way (the less code, the better) to create a dynamic website where users can log into their own custom pages? I have already set up a database that users can enter login info, and I know how to use the "User Authentication Wizard" in Dreamweaver so a signed-up user can log into a generic page, but how do you make it THEIR page? With just their own information? Do you use Session, Cookie, or URL parameters? How?
This topic has been closed for replies.

2 replies

Known Participant
June 21, 2007
Thanks. I think I understand now.
Inspiring
June 20, 2007
You can use either. Use Cookies if you want the info stored on the user's
computer so the information can be remembered from session to session. Use
Sessions if you just want the info to persist till they log out.

You can make it their page by group by using Access Levels in the server
behaviors. You can make it even more customized by storing their
information in a database table that is identified by their ID number and
populate the page on the fly according to the user ID, which you would of
course store in a session so it would persist across the entire set of
pages.


--
Nancy Gill
Adobe Community Expert
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004: A Beginner''s
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development

"Gabe the Animator" <webforumsuser@macromedia.com> wrote in message
news:f5bmt0$dr3$1@forums.macromedia.com...
> What would be the easiest way (the less code, the better) to create a
> dynamic
> website where users can log into their own custom pages? I have already
> set up
> a database that users can enter login info, and I know how to use the
> "User
> Authentication Wizard" in Dreamweaver so a signed-up user can log into a
> generic page, but how do you make it THEIR page? With just their own
> information? Do you use Session, Cookie, or URL parameters? How?
>
>


Known Participant
June 20, 2007
Its the "session" that I don't understand. I can't seem to figure out how to implement sessions in Dreamweaver. How do you implement sessions throughout all of the pages, in dynamic tables, etc?