2009-02-20 71 views
2

我需要關於將會話保存到mysql中的幫助。如何將會話保存到mysql?

現在我正在爲我的登錄系統使用php正常會話。

這裏是我的代碼:

auth.php

<?php 
session_start(); 
include('db.inc.php'); 
$email=mysql_real_escape_string($_POST['email']); 
$pwd=mysql_real_escape_string($_POST['pwd']); 
$sql="Select member_id,email,password,nama,type from users where email='$email' and password=md5('$pwd')"; 
$exec=mysql_query($sql); 
$result=mysql_fetch_array($exec); 
if ($result['type'] == "member") 
{ 
$_SESSION['nama']=$result['nama']; 
$_SESSION['id']=$result['member_id']; 
header('location:member.php'); 
} 
else 
{ 
    echo 'Anda gagal login'; 
    header('location:index.php'); 
} 
?> 

member.php

<?php 
session_start(); 
include('output_fns.php'); 
if(!$_SESSION['nama']) 
{ 
    header('location:index.php'); 
} 
else 
{ 
do_kepala('Member'); 
echo 'Welcome &nbsp;&nbsp;&nbsp;' . $_SESSION['nama']; 
menu_member(); 
?> 
+0

我不明白你在這裏找什麼...... – Jasper 2009-02-20 15:00:06

回答