<?php
header("Content-Type: application/json");
header("Access-Control-Allow-Origin: *");

$username = $_GET['username'];

$url = "http://152.67.32.187:5000/check/" . $username;

$response = file_get_contents($url);

echo $response;
?>