"Received no data in response" while using unity web requests

51 Views Asked by At

i am using this script to read data from a php script i hosted online using my php. when i run my game i am getting a 'Received no data in response' message and runtime error that says :'Curl error 52: Empty reply from server' in the console .

    public IEnumerator connect( )
    {
        WWWForm form = new WWWForm();
        using (UnityWebRequest www = UnityWebRequest.Get("https://lazyboy.wuaze.com/connect.php"))
        {

            yield return www.SendWebRequest();
            if (www.isNetworkError || www.isHttpError)
            {
                print(www.error);
            }
            else
            {
                print(www.downloadHandler.text);
                byte[] results = www.downloadHandler.data;

            }
        }
    }

my php script:

<?php
error_reporting(E_ALL); ini_set('display_errors', 1);
$servername = '';
$username = '';
$password = '';
$dbname = '';
// Create connection

$conn = new mysqli($servername, $username, $password,$dbname);
// Check connection
if ($conn->connect_error) {
  die("Connection failed: " . $conn->connect_error);
}
else{
    echo"connected to DB";
}
?>

i tried going to my URL and it displays "connected to DB"

0

There are 0 best solutions below