Jump to content

user login


msz

Recommended Posts

Dear Friend's!

i have a problem in my user login page.

the problem is that when user login and i click the next page or link, then it will disappear, and when i back to the perivous page then it will not show the user?

what can i do,,,,

my login code is ..

<?php

include './header.php';

include 'connection.php';

if(isset($_POST) && count($_POST)>0) {

$user = $_POST['username'];

$pass = $_POST['password'];



$sSQL = "SELECT * FROM ulog WHERE User_Name ='$user' AND Password = '$pass'";



$result = mysql_query($sSQL) or die(mysql_error());



if(mysql_affected_rows() > 0) {

$row = mysql_fetch_object($result);



$_SESSION['username'] = $row->User_Name;

$_SESSION['password'] = $row->id;

echo "<h4 id='welcome'>welcome &nbsp<a href='#'> $user</a></h4>";



}



else

{

header("location:signup.html");

}

}



?>
Link to comment
https://forums.phpfreaks.com/topic/281704-user-login/
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.