Jump to content

[SOLVED] header location..hmmm


rondog

Recommended Posts

I searched and read the sticky and still cant figure this out. I have a basic form that checks username and pw and if it matches set a session and do this header location thing, but when I do it, it echoes "Granted" meaning their was a match, but it doesn't relocate to tracker.php

 

in my connect.php i also have session_start(); so that shouldn't be an issue. I even tried typing out the full url and basically it just looks like it refreshes the page.

<?php
include 'connect.php';
$action = $_SERVER['PHP_SELF'];
$submit = $_POST['submit'];

echo "<form action=\"$action\" method=\"post\">";
echo "Username: <input name=\"username\" type=\"text\" size=\"25\" /><br/><br/>";
echo "Password: <input name=\"password\" type=\"password\" size=\"25\" /><br/><br/>";
echo "<input name=\"submit\" type=\"submit\" value=\"Submit\" />";
echo "</form>";

if($submit) {
if($_POST['username'] == "admin" && $_POST['password'] == "admin") {
	echo "granted";
	$_SESSION['loggedIn'] = "yes";
	header('Location: tracker.php');
} else {
	echo "denied";
}
}
?>

Link to comment
Share on other sites

<?php
//include 'connect.php'; //commented out as i can't see why you need this
$action = $_SERVER['PHP_SELF'];
$submit = $_POST['submit'];
if(isset($_POST['submit']))
{
if($_POST['username'] == "admin" && $_POST['password'] == "admin") {
	echo "granted";
	$_SESSION['loggedIn'] = "yes";
	header('Location: tracker.php');
} else {
	echo "denied";
}
}

echo "<form action=\"$action\" method=\"post\">";
echo "Username: <input name=\"username\" type=\"text\" size=\"25\" /><br/><br/>";
echo "Password: <input name=\"password\" type=\"password\" size=\"25\" /><br/><br/>";
echo "<input name=\"submit\" type=\"submit\" value=\"Submit\" />";
echo "</form>";
?>

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.