Certain parts of database not being retrieved in Webplayer/Android, other parts work fine. Everything works fine in Editor/Standalone.
So I have a game built in Unity3D that has database access. Most of the URLS I have work fine in both editing and built versions. However, one type (a panel to display the player's current score of a level and the top 3 scores of that level) works perfectly in the editor, but when I compile it to anything else (web, standalone, droid...) it the panel loads and the name displays, but nothing is retrieved.
The only difference I can think of is that this panel opens up on a mouse over a button, while the other retrievals are automatic. Remember that when built, OTHER url retrievals work fine and display everything correctly, it's just this one panel that doesn't seem to work right. Any thoughts on what could be causing this?
The code is in C# if that matters. The database is MySQL with php.
Code for Unity http://pastebin.com/kAtGabLZ
Code for connection http://pastebin.com/J4caewrN
Expected Behavior (Editor/Standalone)
http://i.imgur.com/kxDREdO.png
http://i.imgur.com/67pJn36.png
Yellow hi-light: Text called from C# Script
Red hi-light: Text called from php script on separate server
Scores: Retrieved from Database
Broken Behavior (Webplayer/Android)
http://i.imgur.com/OMwnzo8.png
http://i.imgur.com/Q0LrGJf.png
Yellow hi-light: Text called from C# Script
Lack of Red hi-light and Scores means php script is not being retrieved.
Both the SQL server and game server have working cross-domain.xml scripts. There are other places in the game that upload to and retrieve from the database on ALL built versions, it's JUST this particular bit of code that is giving me trouble. Any help would be appreciated.
Your answer

Follow this Question
Related Questions
Decoding JSON string 0 Answers
500 Internal server error in WWWForm 0 Answers
C# safe connect to MySQL database. Download and upload data via PHP script. 1 Answer
Can I add a table to a mySQL database using C#? 0 Answers
Mysql/PHP Grab specific data 0 Answers