Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dreamweaver Login so users go to there own page

Status
Not open for further replies.

vanhooseja

IS-IT--Management
Jan 29, 2008
2
US
I am trying to figure out how to set up a webpage so users can login and go to there uniqe page to download files.

My client's server supports PHP and mySQL. Because of this I am not sure how to proced if it was ASP .NET I could do it but I am now lost on this project. can anyone help coach me along.
 
Not sure why you are posting here, but well if suppose each of the users has a folder where they have the page to display, and the folder has the name of the user.

you could do something easy like:

Code:
header("Location:" . $username . "\index.php");

That is of course if he;s been authenticated, and the folder name is the user name. If not you might need to explain a bit more how it should be set up.

Also if you can do it in ASP, follow that same logic using PHP functions.



----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top