diff --git a/proxy.php b/proxy.php new file mode 100644 index 0000000..039df73 --- /dev/null +++ b/proxy.php @@ -0,0 +1,62 @@ + 'Proxy error: ' . curl_error($ch)]); + curl_close($ch); + exit(); +} + +curl_close($ch); + +// Set the HTTP response code +http_response_code($httpCode); + +// Return the response +echo $response; +?>