Skip to content

Instantly share code, notes, and snippets.

@rossanag
Forked from bmcbride/proxy.php
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save rossanag/5de48677de86536710a3 to your computer and use it in GitHub Desktop.

Select an option

Save rossanag/5de48677de86536710a3 to your computer and use it in GitHub Desktop.
<?php
$ch = curl_init($_GET['url']);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment