putsch Posted September 8, 2008 Share Posted September 8, 2008 Hello, I've been searching for quite a while now without success... What i need using php and Dreaweaver CS3... is a way to create a login page which would redirect users to a UNIQUE landing page ... basically an html page where each client would get there information and there own page. I would prefer using the built-in login user system dreamweaver offers. ive attached a pic of what i did in the login user dreamweaver offers. I basically created a URL variable named VARlink that relates to a 'link' field in the users database thru a recordset, and tried to link the 'if login succeeds go to' to the variable: typing: <?php echo $_GET['VARlink']; ?> I am so confused, I might not even be capable of making myself comprehensible as to what I attempt. Maybe the simplest way is to wait and see if someone who gets it comes to an idea. Hope i am clear as to what i want. Thanks! Link to comment https://forums.phpfreaks.com/topic/123276-login-page-redirects-to-unique-landing-page/ Share on other sites More sharing options...
discomatt Posted September 8, 2008 Share Posted September 8, 2008 Your best bet here would be to hit a dreamweaver forum. Most of us prefer to hand code rather than use a GUI, so I'm not sure there's much dreamweaver experience here. Sorry. Link to comment https://forums.phpfreaks.com/topic/123276-login-page-redirects-to-unique-landing-page/#findComment-636629 Share on other sites More sharing options...
lemmin Posted September 8, 2008 Share Posted September 8, 2008 This is usually done by simply echoing out the information that is returned from the database for that particular user. For example: Echo "Welcome " . $row['user'] . "!"; Link to comment https://forums.phpfreaks.com/topic/123276-login-page-redirects-to-unique-landing-page/#findComment-636630 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.