Page 1 of 1

Help Needed In Remember Me Feature In Login!

Posted: Tue Feb 21, 2012 11:39 am
by Shahlin
I Have A Login With Remember Me Feature In It.
The Problem Is When A Person Checks 'Remember Me' And Logs In, Then His Data Isn't Shown. When He Logs In Without Checking 'Remember Me', His Data Is Shown!
Everything Works Fine! Except The User's Data Isn't Shown.

This Is The Notice I Get : Undefined index: user_id in C:\xampp\htdocs\vu\func\user.func.php on line 17

My user_data function!

[syntax=php]function user_data() {
$args = func_get_args () ;
$fields = '`'.implode('` , `',$args).'`' ;

$id = (isset($_COOKIE['user_id'])) ? (int)$_COOKIE['user_id'] : $_SESSION['user_id'];

$query = mysql_query ("SELECT $fields FROM `users` WHERE `user_id`='".$id."' ") ;
$query_result = mysql_fetch_assoc($query) ;
foreach ($args as $field) {
$args [$field] = $query_result[$field] ;
}
return $args ;
}[/syntax]

My Login Page :

[syntax=php]
<?php
if (logged_in()) {
$user_data = user_data ('name') ;
echo 'Hello! '.$user_data['name'] ;
} else {
?>

<form action="" method="POST">
<p>
Email : <input type="email" name="login_email" />
Password : <input type="password" name="login_password" />
<input type="checkbox" name="rememberme" /> Remember Me
<input type="submit" value="Log in" />
</p>
</form>

<?php
}
if (isset ($_POST['login_email'], $_POST['login_password'])) {

$login_email = $_POST['login_email'] ;
$login_password = $_POST['login_password'] ;
$rememberme = $_POST['rememberme'] ;

$errors = array() ;

if (empty ($login_email) || empty ($login_password)) {
$errors[] = 'Email and password required.';
} else {

$login = login_check ($login_email,$login_password) ;

if ($login === false) {
$errors[] = 'Please type in a valid email/password.' ;
}

}
if (!empty ($errors)) {
foreach ($errors as $error) {
echo '<li>'.$error.'<br />' ;
}
} else {
if ($rememberme=='on')
setcookie ('username', $login_email, time()+7200) ;

else if ($rememberme=="")
$_SESSION['user_id'] = $login ;
header ('Location: index.php') ;
exit () ;
}

}
?>
[/syntax]

Re: Help Needed In Remember Me Feature In Login!

Posted: Tue Feb 21, 2012 10:13 pm
by jacek
[syntax=php] foreach ($args as $field) {
$args [$field] = $query_result[$field] ;
}
return $args ;[/syntax]
You should use a different variable in place of $args in the loop really.

Also this code is kind of all in the wrong order, maybe try my version of the login tutorial ?

Re: Help Needed In Remember Me Feature In Login!

Posted: Wed Feb 22, 2012 3:15 pm
by Shahlin
jacek wrote:[syntax=php] foreach ($args as $field) {
$args [$field] = $query_result[$field] ;
}
return $args ;[/syntax]
You should use a different variable in place of $args in the loop really.

Also this code is kind of all in the wrong order, maybe try my version of the login tutorial ?


Uhmmm Can You Tell Me The Solution? :)

I Already Watched Your Video And Created A Perfect One! But I Don't Know How To Use That And Connect It With My Page.

Re: Help Needed In Remember Me Feature In Login!

Posted: Thu Feb 23, 2012 11:12 pm
by jacek
Shahlin wrote:Uhmmm Can You Tell Me The Solution? :)

Well the solution would be just explaining how I do login pages, which is in the videos :?

The actual error is caused by this line

[syntax=php]$id = (isset($_COOKIE['user_id'])) ? (int)$_COOKIE['user_id'] : $_SESSION['user_id'][/syntax]
it happens because the variable $_SESSION['user_id'] has no value. Was the code you posted the full thing, because it night be as simple as you forgot the session_Start() call.

Re: Help Needed In Remember Me Feature In Login!

Posted: Fri Feb 24, 2012 2:35 pm
by Shahlin
jacek wrote:[syntax=php]$id = (isset($_COOKIE['user_id'])) ? (int)$_COOKIE['user_id'] : $_SESSION['user_id'][/syntax]
it happens because the variable $_SESSION['user_id'] has no value. Was the code you posted the full thing, because it night be as simple as you forgot the session_Start() call.


EDITED : Uhmmm Nevermind. I Managed To Fix It! :D
Thanks Anyways! :D