document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $c = curl_init();
  2. curl_setopt($c, CURLOPT_URL, $url);
  3. curl_setopt($c, CURLOPT_TIMEOUT, 15);
  4. curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
  5. $content = curl_exec($c);
  6. $status = curl_getinfo($c, CURLINFO_HTTP_CODE);
  7. curl_close($c);
');