/    Sign up×
Community /Pin to ProfileBookmark

setting cookies?

Hello…

I am trying to make my script identify if the user is logged in or not, and if they arent then it will restrict calling the pages directly from the browser… I am pretty much basing my scripts on [URL=http://forums.webdeveloper.com/showthread.php?s=&threadid=9950]THIS THREAD[/URL]

login.php

[code=php]

<?PHP
if (isset($_POST[“login”])) {

$frmuser = $_POST[“user”];
$frmpass = $_POST[“pass”];
//DB Variables
$user = “***”; #username
$pass = “***”; #password
$dbname = “***”; #database name
$tablename = “***”; #table name

$dbh = mysql_connect (“localhost”, “$user”, “$pass”) or die (‘I cannot connect to the database because: ‘ . mysql_error());
mysql_select_db (“$dbname”);

$query = “SELECT * FROM $tablename WHERE user=’$frmuser'”;

if (mysql_db_query ($dbname, $query, $dbh)) {
$result = mysql_query($query);
$num_rows = mysql_num_rows($result);

if ($num_rows != 0) { #if a username was found
while($row = mysql_fetch_array($result)) {
if ($row[“pass”] == $frmpass) { #if password matches the one in the DB
include ‘index_logged.php’;
setcookie (“verified”, true);
header(“Location:http://www.jdm71488.com/???????”);
}
else { #if it did not match
echo “Password Incorrect”;
}
}
}
else { #if a username was not found
echo “Username Incorrect”;
}
}
mysql_close ($dbh);
}
?>

[/code]

I added <? include_once(“protect.php”); ?> to all of my protected pages, and changed .html to .php on them all…

When I log in with login.php it gives me access denied when I enter the right information. I enter the wrong username, or password it works fine, and it will display wrong username, or wrong password… But when I log in with my user and pass, it gives me the access denied page. Which is on the protect.php page found in the link… Pyro may know what I am talking about…

My questions are… Is my login.php script right? I dont think it is where I added the set cookie part. Also where to I put the header for that cookie? Is it to my home page or where?

to post a comment
PHP

4 Comments(s)

Copy linkTweet thisAlerts:
@pyroJun 20.2003 — Let's try it like this:

[code=php]if ($row["pass"] == $frmpass) { #if password matches the one in the DB
setcookie ("verified", true);
header("Location:http://www.jdm71488.com/loggedinpage.php");
}[/code]


Not sure what the file you included ( index_logged.php )was doing, so try it without.
Copy linkTweet thisAlerts:
@JDM71488authorJun 20.2003 — That is so cool... Now for a logout script... Do I have to unset the cookie? I know it automatically resets once the browser is closed if you are logged in or not. Should I leave it like this, or is there a way to unset or unverify it?

JDM
Copy linkTweet thisAlerts:
@JickJun 20.2003 — I don't have time to look at all the thred but if your using sessions use this:
[code=php]
<?PHP

session_start();
session_destroy();

header ("Location:index.php");

?>
[/code]
Then just have a button or link called "Logout" that links to this file! Hope that helps. ?
Copy linkTweet thisAlerts:
@pyroJun 20.2003 — Yes, what you do is just set the cookie to expire sometime in the past:

[code=php]setcookie ("verified", "", time() - 3600); #expire 1 hr. ago[/code]
×

Success!

Help @JDM71488 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...