|
|
|
ขอถามเรื่องการล้างค่าหน่อยสิครับ จนปัญญาจริงๆครับ ขอความกรุณาด้วยครับ T-T |
|
|
|
|
|
|
|
ยังไงหรอ ดู code login หน่อยสิ
|
|
|
|
|
Date :
2011-08-02 09:28:34 |
By :
onedan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือง่ายครับ browser ฉลาดเกินไป - - ปกติมันจะเก็บ username password ที่เราใช้เข้าเว็บต่างๆให้ใช่ไหมครับ แล้ว
ผมเขียนเว็บอะครับ แต่ในส่วน สมัครสมาชิก ตรง form username password มันดึงค่า username password ที่เราใช้
login เข้าระบบมาใส่อะครับ
Code (PHP)
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['user'])) {
$loginUsername=$_POST['user'];
$password=$_POST['pwd'];
$MM_fldUserAuthorization = "status";
$MM_redirectLoginSuccess = "success/2011.php";
$MM_redirectLoginFailed = "2011.php?check=logfails";
$MM_redirecttoReferrer = false;
mysql_select_db($database_Melody, $Melody);
$LoginRS__query=sprintf("SELECT username, password, status FROM member WHERE username=%s AND password=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
$LoginRS = mysql_query($LoginRS__query, $Melody) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = mysql_result($LoginRS,0,'status');
if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
|
|
|
|
|
Date :
2011-08-02 09:42:14 |
By :
MermaidMelody |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเกิดปัญหาในส่วน Spry คือพอมันใส่ค่าให้ ตรงส่วนที่ผมเช็คดักไว้ ข้อความมันขึ้นเอง - - การดักใช้การมะได้
|
|
|
|
|
Date :
2011-08-02 09:43:29 |
By :
MermaidMelody |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|