Reputation: 3209
I'm looking to create a user admin area and public profile page with custom URL in PHP. I have found a great tutorial on users creating their own private admin area. However, I'm struggling to find further guidance on the following:
Creating a public custom URL (such as as website.com/username) based on what the user requested on signup.
Using that custom URL to display public profile page with selected information the user entered into their private admin area.
I know this is bread and butter stuff but I'm leaning PHP so any guidance and best practices at this stage are very welcome.
Thanks, Jack.
Upvotes: 0
Views: 1299
Reputation: 1385
You could try the following:
mod_rewrite
(assuming you have an Apache server) to forward all domain.com/abcde
requests that don't match an existing file or directory (see -f
condition) to domain.com/user.php?name=abcde
user.php
, get all the data based on the user-chosen name from the database and display it, display an error message if no user is found.Upvotes: 2