ghm.. unless you are really storing the $_SESSIOND_id in your users table as an ID (Which would not make sense), you might be looking for something like this:
$data = mysql_query("SELECT * FROM Users WHERE id = ".$_SESSION['id']." limit 1") OR DIE (mysql_error());
Which is assuming that at login you stored the users.id in $_SESSION['id']