Skip to content

Instantly share code, notes, and snippets.

@cole-gillespie
Created July 6, 2011 14:47
Show Gist options
  • Save cole-gillespie/1067404 to your computer and use it in GitHub Desktop.
Save cole-gillespie/1067404 to your computer and use it in GitHub Desktop.
proxy for dseif
<?php
$type = $_GET['type'];
if($type == 'scrape'){
$url = $_GET['url'];
$ch = curl_init("http://bandcamp.com".$url);
}
$html = curl_exec($ch);
curl_close($ch);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment