Jump to content

Forward to another page.


dhavard

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.