I have started to make an app that will retrieve data from a website to an app. I have made a simple php file but it gives me the error:
Parse error: syntax error, unexpected '$con' (T_VARIABLE) in /srv/disk10/2052804/www/poolswag.co.nf/service.php on line 5
I looked online but people getting this same error have noticed that they were missing a semi colon while mine has a semi colon
Any help would be appreciated
    <?php
     
    // Create connection
   -----> line 5 $con=mysqli_connect("http://www.poolswag.co.nf/","2052804_swag”,”test5350”,”2052804_swag");
     
    // Check connection
    if (mysqli_connect_errno())
    {
      echo "Failed to connect to MySQL: " . mysqli_connect_error();
    }
     
    // This SQL statement selects ALL from the table 'Locations'
    $sql = "SELECT * FROM PoolInfo";
     
    // Check if there are results
    if ($result = mysqli_query($con, $sql))
    {
        // If so, then create a results array and a temporary one
        // to hold the data
        $resultArray = array();
        $tempArray = array();
     
        // Loop through each row in the result set
        while($row = $result->fetch_object())
        {
            // Add each row into our results array
            $tempArray = $row;
            array_push($resultArray, $tempArray);
        }
     
        // Finally, encode the array to JSON and output the results
        echo json_encode($resultArray);
    }
     
    // Close connections
    mysqli_close($con);
    ?>
 
     
    