PHP1 [Unity] MySQL-PHP 연동 Unity (LoadPHP.cs) using UnityEngine; using UnityEngine.Networking; using System.Collections; public class LoadPHP : MonoBehaviour { private void Start() { StartCoroutine(GetMySQLData()); } private IEnumerator GetMySQLData() { string serverPath = "http://자신의 도메인 주소.com/LoadMySQL.php"; //PHP 파일의 위치를 저장 WWWForm form = new WWWForm(); //Post 방식으로 넘겨줄 데이터(AddField로 넘겨줄 수 있음) using (UnityWebRequest we.. 2021. 5. 21. 이전 1 다음