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, Link to comment https://forums.phpfreaks.com/topic/120956-solved-post-problem/ 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>"; Link to comment https://forums.phpfreaks.com/topic/120956-solved-post-problem/#findComment-623555 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! Link to comment https://forums.phpfreaks.com/topic/120956-solved-post-problem/#findComment-623557 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.