GreyFilm wrote:Ok for my site I want the user to be able to type their username and password in and it will simply just redirect them to a page customized for them that Im going to have already made. I have no idea how to do this, what to put in the script, or anything. Can someone please give me a script that will achieve this.
there are 2 ways, at least to do this
... Userdata stored in Database
... Userdata stored in Cookie
most often BOTH Database and Cookie is involved
When a user login, Database is used to get password for a Username.
When successful login
script usually get more DATA than password out of this user record.
One such FIELD in user Database Table could be: 'user_page'
with location of this custom page.
.