|
|
|
XML สามารถโหลดค่าจากหน้า php ที่มีการ Session ค่า แล้วส่งไปให้หน้า Flash จะรับค่ารึป่าวครับ |
|
|
|
|
|
|
|
รู้คำตอบครับ แต่ขอโค๊ด ที่มีปัญหาด้วยครับ
|
|
|
|
|
Date :
2017-08-28 03:13:14 |
By :
chaynuwong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
session ไม่เกี่ยวกับ xml ทำงานคนละอย่าง
session ไว้เก็บข้อมูลการเชื่อมต่อระหว่างserver กับ client
xml ไว้ใช้ในการส่งข้อมูลระหว่างโปรแกรม
โปรแกรม php สามารถเก็บ session จาก flash pro./flex(flash builder) ได้
การเก็บ session ระหว่างคอม จะมี รูปแบบการเปรียบเที่ยบว่า มาจากเครื่องเดียวกัน โปรแกรมเดียวกัน
และอาจจะต้องกำหนด session timeout ไว้ด้วยกรณีที่ การร้องขอของจาก client มีการตัด connection
และอาจจะต้องมีการเก็บ session id เพื่อใช้ในการอ้างอิง session เก่า
ก็เลือกใช้งานเอาตามสภาพแวดล้อมที่มี
ตัวอย่าง
https://forums.adobe.com/thread/536000
|
|
|
|
|
Date :
2017-08-28 09:34:39 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้เป็นส่วนของ php ในการดึงค่ามาครับ และก็ส่งค่าตัวแปรพวกนี้เข้าไปใน Flash อะครับ
Code (PHP)
<?
$hostname = "localhost";
$user = "root";
$pass = "xx";
$database = "xx";
mysql_connect($hostname,$user,$pass);
mysql_select_db($database);
mysql_db_query($database,"SET NAMES utf8");
//$de_id = $_REQUEST["de_id"];
$sql2 = "SELECT * FROM `design_detail` WHERE de_id = '".$_GET["de_id"]."' ";
$rs = mysql_query($sql2) or die("Cannot query");
$rt = mysql_fetch_array($rs);
$de_id = $rt ["de_id"];
$m_username = $rt["m_username"];
$name1 = $rt["name1"];
$address1 = $rt["address1"];
$m_zipcode = $rt["m_zipcode"];
$email = $rt["email"];
$tel = $rt["tel"];
$pname = $rt["pname"];
$s = $rt["s"];
$m = $rt["m"];
$l = $rt["l"];
$xl = $rt["xl"];
$text1 = $rt["text1"];
$tx1 = $rt["tx1"];
$ty1 = $rt["ty1"];
$tw1 = $rt["tw1"];
$th1 = $rt["th1"];
$text2 = $rt["text2"];
$tx2 = $rt["tx2"];
$ty2 = $rt["ty2"];
$tw2 = $rt["tw2"];
$th2 = $rt["th2"];
$d_logo = $rt["d_logo"];
$cx1 = $rt["cx1"];
$cy1 = $rt["cy1"];
$cw1 = $rt["cw1"];
$ch1 = $rt["ch1"];
$logoval = $rt["logoval"];
$val = $rt["val"];
echo "<tr align='center'><td>ข้อมูลการตกแต่ง</td>";
echo "de_id=".$de_id."&m_username=".$m_username."&name1=".$name1."&address1=".$address1."&m_zipcode=".$m_zipcode."&email=".$email."&tel=".$tel."&pname=".$pname."&s=".$s."&m=".$m."&l=".$l."&xl=".$xl."&text1=".$text1."&tx1=".$tx1."&ty1=".$ty1."&tw1=".$tw1."&th1=".$th1."&text2=".$text2."&tx2=".$tx2."&ty2=".$ty2."&tw2=".$tw2."&th2=".$th2."&d_logo=".$d_logo."&cx1=".$cx1."&cy1=".$cy1."&cw1=".$cw1."&ch1=".$ch1."&logoval=".$logoval."&val=".$val;
?>
|
|
|
|
|
Date :
2017-08-28 23:37:08 |
By :
1427487567274575 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|