Attila Posted August 23, 2008 Share Posted August 23, 2008 OK someone answered my problem for sending one variable via a post to the next page to be used but now I need to have 2 variables sent. How can I do this? Here is what I have. echo '<div align=center><a href="membersloggedin.php?Uname='.$_POST[uname].''.and.'Password='.$_POST[Password].'">Please click here to continue.</a></div>'; I know this is not the typical wat to send a user name and a password but this is for a simple blog for a video game we play I run the website and the members wanted a blog so I am making a blog from scratch. Once I get this problem fixed I have all the pages done except for the posting which should be easy. THanks, Quote Link to comment Share on other sites More sharing options...
marcus Posted August 23, 2008 Share Posted August 23, 2008 echo "<div align=\"center\"><a href=\"membersloggedin.php?Uname=".$_POST['Uname']."&Password=".$_POST['Password']."\">Please click here to continue.</a></div>"; Quote Link to comment Share on other sites More sharing options...
Attila Posted August 23, 2008 Author Share Posted August 23, 2008 Thans so much and for being so quick it worked perfectyl! Quote Link to comment 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.