|
|
|
ขอสอบถามเรืองการเขียนเกมส์ด้วย HTML5 ต้องใช้ร่วม กับ mysql เหมือนเดิมไหมครับ |
|
|
|
|
|
|
|
ถ้าจะให้เก็บถาวรควรจะใช้ mysql ครับ แต่ถ้าเก็บชั่วคราวใช้พวก cookie, localStorage ได้ครับ
|
|
|
|
|
Date :
2013-12-04 21:59:19 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูพวกฟังก์ชั่น localStorage ของ html5
var foo = localStorage.getItem("bar");
// ...
localStorage.setItem("bar", foo);
…could be rewritten to use square bracket syntax instead:
var foo = localStorage["bar"];
// ...
localStorage["bar"] = foo;
หรือ http://www.w3schools.com/html/html5_webstorage.asp
|
|
|
|
|
Date :
2013-12-04 22:41:32 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|