I have one question. ^^
- I make unity standalone version.
- and make Web server (php+mysql).
if click client button, unity client communicate with web server.
Client source
WWW www ;
switch ( button_number )
case 0 :
String strUrl2 = String.Format("http://mydomain.com/WebPlayer.php?mode=Login&id=xxx&pass=xxx");
www = new WWW(strUrl);
case 1 :
String strUrl2 = String.Format("http://mydomain.com/WebPlayer.php?mode=Myinfo&id=xxx");
www = new WWW(strUrl);
case 2 :
String strUrl2 = String.Format("http://mydomain.com/WebPlayer.php?mode=Rankinginfo&id=xxx");
www = new WWW(strUrl);
//
If click button_number 0 → call “Login” to Web server.
If click button_number 1 → call “Myinfo” to Web server…
It is correctly work.
BUT…
session of php web server is changed.
Whenever call web server, server session is changed.
Why change web-server session ??
Please help me~~~