Skip to content

Instantly share code, notes, and snippets.

@TheOnlyArtz
Last active January 12, 2021 17:35
Show Gist options
  • Save TheOnlyArtz/3d5f0db5ca7140266108688a5f871fc3 to your computer and use it in GitHub Desktop.
Save TheOnlyArtz/3d5f0db5ca7140266108688a5f871fc3 to your computer and use it in GitHub Desktop.
<?
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "https://8519f0b2a381cbd6031d04f1f7934335.m.pipedream.net");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
?>
<!DOCTYPE html>
<html>
<body>
<h1>my first page</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment