Jump to content

PHP sessions :| login .. when John becomes Peter :)


S4C

Recommended Posts

So i have one problem. Im developing web system for IRC community.. (ahh whatever :) )
problem:
If lets say "John" and "Peter" is using my website at the same time.. Why does sessions variables exchanges.. I  mean John's $_SESSION['user'](object) becomes Peter's :| etc. :\ so wtf?
What im doing  wrong? What I should do?

Thanks a lot  ::)
Link to comment
Share on other sites

Hmm I think i know where the problem is! :O Could it be..

[code]<?php
        // login.php
include ("temp/constants.php");
function user_login($username, $pass) {
$db = mysql_connect("localhost",DB_USER, DB_PASS) or die("Sorry news data base is not working..");
mysql_select_db(DB_NAME, $db) or die("Ooops.. DB is not working!");
$rec = mysql_query("SELECT * FROM `users` WHERE username='$username' AND pass='$pass'", $db);
if (mysql_num_rows($rec) > 0) {
$date =  date('Y-m-d H:i:s');
mysql_query("UPDATE users SET active='$date' WHERE username='$username'", $db);
session_start();
$_SESSION['user'] = mysql_fetch_object($rec);
$_SESSION['loged']= true;
};
mysql_close();
};

    if (isset($_POST['username']) && isset($_POST['pass']) ){
$username = $_POST['username'];
$pass = $_POST['pass'];
if ($pass != "") && ($username != "")) user_login ($username,$pass);
};
if (isset($_SESSION['user'])) {
$id = $_SESSION['user']->id;
header ("location: index.php?cat=profile&user=$id"); // <---to his/her profile page
} else header("location: index.php");
?>
[/code]

[code]<?php
  //patikriname ar vartotojas prisijunges
if (!isset($_SESSION['loged'])) { print "<p align='center' class='Stil5'>Privalote prisijungti prie sistemos.</p>"; exit(); };
if (isset($_GET['user'])) {
$user = user_info($_GET['user']); // Maby $user is the same as $_SESSION['user'] ? o_O
} else exit();
                .....
?>

[/code]
// Maby $user is the same as $_SESSION['user'] ? o_O if it is..
So if other user is 'loged' and im looking at his profile page i become $user = user_info($_GET['user']); MR JOHN :D 
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.