eleven0 Posted February 12, 2008 Share Posted February 12, 2008 I made simple log in using if statements. if (($name==loginname) && ($pw==password)) echo "you are logged in"; else echo "Go away"; How do I redirect to some other page/id if the if statement is true. also, i want that page to be accessible by only logging in. Quote Link to comment https://forums.phpfreaks.com/topic/90772-redirect-after-login/ Share on other sites More sharing options...
revraz Posted February 12, 2008 Share Posted February 12, 2008 Google HTML Redirect Quote Link to comment https://forums.phpfreaks.com/topic/90772-redirect-after-login/#findComment-465283 Share on other sites More sharing options...
toplay Posted February 12, 2008 Share Posted February 12, 2008 header('Location: http://www.example.com/script_name.php'); exit; Quote Link to comment https://forums.phpfreaks.com/topic/90772-redirect-after-login/#findComment-465286 Share on other sites More sharing options...
revraz Posted February 12, 2008 Share Posted February 12, 2008 He's echoing "you are logged in", header will fail. Quote Link to comment https://forums.phpfreaks.com/topic/90772-redirect-after-login/#findComment-465287 Share on other sites More sharing options...
feelay Posted February 12, 2008 Share Posted February 12, 2008 If you mean that the user logs in from the "index page". and that if the user is logged in, show some texr, etc, else if the user is logged out, show login form, you will have to learn how to use sessions (or cookies, but sessions are more safe, i think) something like this.. index.php <?php if(isset($_SESSION['online'])){ echo "Welcome $_SESSION['online']"; } else{ ?> <form name="login_form" method="post" action="loginck.php"> <input name="user" type="text">ID<br /> <input name="pass" type="password">Password<br /> <input type="submit" name="login" id="login" value="Login"> </form> <?php } ?> and then the loginck.php should be something like this: <?php if (($_POST['user']==loginname) && ($_POST['pass']==password)){ $_SESSION['online']; header("location:index.php"); } else{ echo "Go away"; If that is what you wanted, then here you go. else if you just wanted to redirect, you can just use the folowing code: <?php header("location:file.php or whatever"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/90772-redirect-after-login/#findComment-465292 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.