Forum Moderators: mack
Either way the fundamentals remain the same. You will need to have a sign up page that will create your users. You can then opt to store your user information in a database or as simple flat files. (text files)
As for member pages this can be done in a number of ways. You can have dynamic pages that are generated on the fly when a user views then or you can have static page that are real pages that are stored on the server.
An example of a dynamic page would be...
example.com./showuser.php?name=mack
whereas a static page would be like this...
example.com/showuser/mack.php
In order to build something like this you would really have to do quite a lot of reading up on php/mysql or asp programming. You may be able to use an open source user management system and modify it to your own needs. Sometimes open source software can be a great foundation for applications.
Mack.