proxy.php


SUBMITTED BY: adrianosgs90

DATE: June 16, 2023, 8:03 p.m.

UPDATED: June 16, 2023, 8:04 p.m.

FORMAT: Text only

SIZE: 246 Bytes

HITS: 576

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

comments powered by Disqus