Jump to content

redirect after login


eleven0

Recommended Posts

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.

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.