Hi Folks,
I want to create a unique web page for each user that would be accessible from a common dashboard page. the idea being that by clicking on the 'button' after log in the user will be directed to their own page.
I did this before after a number of hours of tweaking and finally figured it out. that was a couple of years ago!
My pages are all .php and the users all log in through the DBTS logger page so there is a SQL database.
The idea is to reference their unique USERNAME in the database so every client will be directed to their own page. my first thought was to query the database by inserting a link as follows:
http//www.fit2000usa.com/dbts_logger/<? echo $Username; ?>.php
That does not seem to be working...anyone have any experience with this??
Cheers
Rich
I want to create a unique web page for each user that would be accessible from a common dashboard page. the idea being that by clicking on the 'button' after log in the user will be directed to their own page.
I did this before after a number of hours of tweaking and finally figured it out. that was a couple of years ago!
My pages are all .php and the users all log in through the DBTS logger page so there is a SQL database.
The idea is to reference their unique USERNAME in the database so every client will be directed to their own page. my first thought was to query the database by inserting a link as follows:
http//www.fit2000usa.com/dbts_logger/<? echo $Username; ?>.php
That does not seem to be working...anyone have any experience with this??
Cheers
Rich
Comment