Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. $c = curl_init('http://myuser:mypassword@myurl.com');
  3. curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
  4.  
  5. $content = curl_exec($c);
  6. $contentType = curl_getinfo($c, CURLINFO_CONTENT_TYPE);
  7. header('Content-Type:'.$contentType);
  8. print $content;
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement