|
|
|
รบกวนช่วยที่ครับ คือผมทำการ crul มาแล้ว ใช้session เก็บข้อมูลแล้ว อยาก จะเอาข้อมูล ที่เข้าไปลงอีกตารางควรทำไงครับ |
|
|
|
|
|
|
|
ส่วนนี้จะเป็น การ เช็ค ล๊อคอินอะครับ
คือผมจะเอา ค่าใน SESSION ที่ทำการเก็บไว้ไปลงในอีกดาต้าเบสอื่นอะครับ เพราะอันนี้ผมใช้ เซอร์วิส ครับ
$_SESSION["FirstName"]=$response[0]->FirstName; จะเอา ค่า ของ FirstName ไปลงดาต้าเบสอื่นอะครับ รบกวนพี่ที่หน้ารัก หล่อๆ ช่วยบอกผมด้วยนะครับ ขอบคุณครับ
<?php
session_start();
$username = $_POST['txtUsername'];
$password = $_POST['txtPassword'];
$url = 'http://www.wcm.net/pro/logincurl.php';
$data = 'Username='.$username.'&Password='.$password;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt( $ch, CURLOPT_POSTFIELDS, $data);
curl_setopt( $ch, CURLOPT_HEADER, 0);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec( $ch );
/*
if($response["Status"]!="Teacher")
{
echo $response;
header("refresh: 2; url=/examV1/index1.php");
}
else
{
echo $response;
header("refresh: 2; url=/examV1/login.php");
}
*/
$_SESSION["MID"] = $response[0]->MID;
$_SESSION["FirstName"]=$response[0]->FirstName;
$_SESSION["LastName"]=$response[0]->LastName;
$_SESSION["UserName"]=$response[0]->UserName;
$_SESSION["Pass"]=$response[0]->Pass;
$_SESSION["Telephone"]=$response[0]->Telephone;
$_SESSION["Facebook"]=$response[0]->Facebook;
$_SESSION["Status"]=$response[0]->Status;
$response = json_decode($response);
var_dump($response);
if($response != 0){
foreach ($response as $value) {
$_SESSION["MID"] = $response[0]->MID;
$_SESSION["FirstName"]=$response[0]->FirstName;
header( "refresh: 2; url=/examV1/index1.php");
}
}else{
header( "refresh: 2; url=/examV1/login.php" );
}
?>
Tag : PHP, HTML/CSS, CakePHP
|
|
|
|
|
|
Date :
2014-11-24 01:48:18 |
By :
Poae |
View :
670 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก่อนกำหนดค่า $_SESSION=....
print_r( $response) ; มาเช็คดูก่อนครับ ว่าค่ามันเป็นอยา่งไร จะได้เขียน โค๊ดได้ถูกต้อง
|
|
|
|
|
Date :
2014-11-24 07:25:50 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2014-11-24 10:32:11 |
By :
Poae |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|