I'm having issues with session variables. When a person logs in, a variable $_SESSION['id'] is set to the user id in the database. However, after some processing and url changes, this variable starts holding id of other tables in the database. This issue is only there on production site..not on my localhost...How do i maintain same value for $_SESSION['id'] across all the pages?
session_start();
$query = "SELECT id, name, priviledge, approve FROM customers WHERE username='{$username}' AND password='{$password}' LIMIT 1";
$result = mysql_query($query,$connection);
report($result);
$returned = mysql_fetch_array($result);
$name = $returned['name'];
$id = $returned['id'];
$priviledge = $returned['priviledge'];
$approve = $returned['approve'];
if(isset($name)){
$_SESSION['id'] = $id;
//rest of the code
}
Another file:
<?php
$query = "
SELECT name, address, phone, email
FROM customers
WHERE id = {$_SESSION['id']}
LIMIT 1;
";
$result = mysql_query($query);
report($result);
$row = mysql_fetch_assoc($result);
$name = $row['name'];
$addr = $row['address'];
$ph = $row['phone'];
$email = $row['email'];
echo "<h5>Delivery Address</h5><p> </p>";
echo "<span>{$name}<br />{$addr}<br />{$ph}<br />{$email}</span><p> </p>";
?>