dhavard Posted April 3, 2007 Share Posted April 3, 2007 Ok so I have a script that when soemone tries to access a certain page it requires them to login or register. After the login has been verified it brings them to a page that says click here to go to our wholesale page. How can I make it go straight to the wholesale page and keep them from having to click on a link? The code is below that directs it where to go after a valid login. setcookie("loggedin", "".$_POST['username']."", time()+(3600 * 24)); setcookie("username", "".$_POST['username']."", "TRUE"); echo "Welcome: <strong>".$_POST['username']."</strong><br>"; echo "Continue to the <a href=http://www.thetikigardens.com/wholesale.htm>Wholesale</a> section."; Link to comment https://forums.phpfreaks.com/topic/45457-forward-to-another-page/ Share on other sites More sharing options...
only one Posted April 3, 2007 Share Posted April 3, 2007 header("location: the url"); Link to comment https://forums.phpfreaks.com/topic/45457-forward-to-another-page/#findComment-220709 Share on other sites More sharing options...
dhavard Posted April 3, 2007 Author Share Posted April 3, 2007 sweet thanks! Link to comment https://forums.phpfreaks.com/topic/45457-forward-to-another-page/#findComment-220728 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.