Jump to content

redirect after login


eleven0

Recommended Posts

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");
?>

Link to comment
https://forums.phpfreaks.com/topic/90772-redirect-after-login/#findComment-465292
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.