|
|
|
ติดปัญหครับ ไม่เข้าใจวิธีใช้ session ครับช่วยที ความต้องการคือเก็บSessionเพิ่มครับ |
|
|
|
|
|
|
|
อยากจะทราบวิธีเก็บค่า session เพิ่มต้องทำยังไง เพราะตัวเองก็ไม่รู้ว่าไปเก็บ session MM_username มาตอนไหนทำตามที่เขาสอนมาแต่พอมาหน้าตะกร้าสินค้าของผมต้องการ cus_id ซึ่งไม่ได้เก็บมา อยากขอดูโค้ดหน้าไหนบอกได้นะครับ ไฟล์มันเยอะและก็ไม่รู้จะให้ดูหน้าไหนด้วย
ขอบคุณมากครับ
Code (PHP)
<?php require_once('../Connections/myconnect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
// *** Validate request to login to this site.
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['password'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "for-cus.php";
$MM_redirectLoginFailed = "log-cus.php";
$MM_redirecttoReferrer = false;
mysql_select_db($database_myconnect, $myconnect);
$LoginRS__query=sprintf("SELECT cus_username, cus_password FROM tbcustomer WHERE cus_username=%s AND cus_password=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
$LoginRS = mysql_query($LoginRS__query, $myconnect) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
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 );
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>หน้าหลัก</title>
<style type="text/css">
body {
background-image: url(../101835645.jpg);
background-color: #FCC;
}
</style>
<script type="text/javascript">
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
</script>
</head>
<body>
<form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
<div align="center">
<table width="519" height="95" border="1">
<tr>
<td width="723"><img src="../เข้าสู่ระบบๅ1.png" width="511" height="87" /></td>
</tr>
</table>
<table border="1">
<tr>
<td>ชื่อผู้ใช้:</td>
<td><label for="user"></label>
<input type="text" name="user" id="user" />
*</td>
</tr>
<tr>
<td>รหัสผ่าน:</td>
<td><label for="password"></label>
<input type="password" name="password" id="password" />
*</td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input name="button" type="submit" id="button" value="เข้าระบบ" />
<input name="button2" type="submit" id="button2" onclick="MM_goToURL('parent','../main.php');return document.MM_returnValue" value="ออก" />
</div></td>
</tr>
</table>
</div>
<div align="center"></div>
<div align="center"></div>
</form>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2018-12-04 15:31:11 |
By :
1956017587798917 |
View :
638 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็น ตัวแปรชนิด global ที่สามารถเรียกใช้ได้ทุกตำแหน่งใน โปรแกรม
แค่บอกโปรแกรมว่า จะใช้ session ด้วยคำสั่ง session_start(); เมื่อเริ่มต้นโปรแกรม
Code (PHP)
session_start();
$_SESSION['variable_key_1']='ค่าตัวแปรที่ต้องการเก็บ 1';
$_SESSION['variable_key_2']='ค่าตัวแปรที่ต้องการเก็บ 2';
echo $_SESSION['variable_key']; // แสดงค่าใน session
ปล. ใช้เครื่องมืออะไรเขียนโปรแกรม
แต่โปรแกรมส่วนใหญ่ก็มีจะมี find in file, find in project, find in folder ให้เราค้นหา ก็เลือกใช้เอานะครับ
|
ประวัติการแก้ไข 2018-12-04 16:30:40
|
|
|
|
Date :
2018-12-04 16:27:31 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้ dw ในการเขียนโปรแกรมครับ
ตัวอย่างโค้ดที่ได้มานั้น
session_start();
$_SESSION['variable_key_1']='ค่าตัวแปรที่ต้องการเก็บ 1';
$_SESSION['variable_key_2']='ค่าตัวแปรที่ต้องการเก็บ 2';
นี่ควรจะเขียนไว้ หน้าตะกร้าหรือตั้งแต่หน้าloggin ขอตัวอย่างได้ไหมครับ
และก็ ถ้าผมต้องการ เก็บ cus_id ที่อยู่ใน table tbcustomer ของuser ที่loginเข้ามานี่ต้องเขียนว่า
&_SESSION['cus_id']='cus_id';
หรือไม่ครับ?
|
|
|
|
|
Date :
2018-12-05 00:19:21 |
By :
1956017587798917 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูจากที่เขียนมายังไม่ค่อยมีพื้นฐาน เรื่องตัวแปร เท่าไหร่เลยนะครับ
แนะนำให้อ่าน document เรื่อง ขนิดตัวแปรต่างๆ ให้มากขึ้นนะครับ
และหา document เฉพาะคำสั่งที่ต้องการจะใช้ ให้มากๆ
|
|
|
|
|
Date :
2018-12-05 07:40:47 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ของผมจะทำไว้หน้า chack login
ถ้า login ถูกแล้วก็ให้ ประกาศ session ไป
Code (PHP)
<meta charset="UTF-8">
<?php
session_start();
include("../conn/connect.php");
?>
<?php
$us = $_POST['txtuser'];
$pa = $_POST['txtpass'];
$strSQL1 = "SELECT * FROM member WHERE username='$us' and password='$pa'";
$objQuery1 = mysqli_query($con,$strSQL1)or die ("Error Query [".$strSQL1."]");
$objResult1 = mysqli_fetch_array($objQuery1);
if(!$objResult1)
{
echo "Username and Password Incorrect!";
header("location:../?page=&chack=1");
}
else
{
$_SESSION["user"] = $objResult1['username'];
$_SESSION["mlevel"] = $objResult1["mem_level"];
header("location:../");
session_write_close();
}
mysqli_close();
?>
https://www.thaicreate.com/php/php-session.html
|
|
|
|
|
Date :
2018-12-06 08:32:33 |
By :
nobetaking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|