fer_75 Posted August 22, 2005 Share Posted August 22, 2005 Hello everybody ! I'm working with Dreamweaver MX and mysql... I have a simple login form and I just want to pass an URL parameter when login has been successful ... in the lines code it is this line which works perfect : -- $MM_redirectLoginSuccess = "modify_home_form.php"; if I pas a value in URL parameters like this : -- $MM_redirectLoginSuccess = "modify_home_form.php?recordId=7"; (it works perfect also) Bui I just want to pass the value of the "user_name" , it is suposed to be like this: $MM_redirectLoginSuccess = "modify_home_form.php?recordId=<?php echo $row_Recordset_users['user_name']; ?> HOW CAN I PASS AN URL PARAMETER WHIT THIS LINK WHEN LOGIN IS SUCCESSFUL ??? how can I pas the username value to the next page after loggin in ??? any help will be so good. Gracias anticipadamente ! Fernando. Quote Link to comment https://forums.phpfreaks.com/topic/2459-how-can-i-pass-this-url-parameter/ Share on other sites More sharing options...
ChrisDarl Posted October 27, 2005 Share Posted October 27, 2005 I would have thought that it should be... $MM_redirectLoginSuccess = "modify_home_form.php?recordId=<?php echo $row_Recordset_users['user_id']; ?> //change user_id to whatever your id column is called. NOT: $MM_redirectLoginSuccess = "modify_home_form.php?recordId=<?php echo $row_Recordset_users['user_name']; ?> if this doesnt work, paste in your SQL connection / query / recordsets and i'll take a look and sort some code out for you. Chris Hello everybody ! I'm working with Dreamweaver MX and mysql... I have a simple login form and I just want to pass an URL parameter when login has been successful ... in the lines code it is this line which works perfect : -- $MM_redirectLoginSuccess = "modify_home_form.php"; if I pas a value in URL parameters like this : -- $MM_redirectLoginSuccess = "modify_home_form.php?recordId=7"; (it works perfect also) Bui I just want to pass the value of the "user_name" , it is suposed to be like this: $MM_redirectLoginSuccess = "modify_home_form.php?recordId=<?php echo $row_Recordset_users['user_name']; ?> HOW CAN I PASS AN URL PARAMETER WHIT THIS LINK WHEN LOGIN IS SUCCESSFUL ??? how can I pas the username value to the next page after loggin in ??? any help will be so good. Gracias anticipadamente ! Fernando. 270011[/snapback] Quote Link to comment https://forums.phpfreaks.com/topic/2459-how-can-i-pass-this-url-parameter/#findComment-9189 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.