Advertisement
sanych_dv

Untitled

Feb 14th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. $url = $_GET["url"];
  2.  
  3.  
  4.     $ch = curl_init();
  5.     curl_setopt($ch, CURLOPT_HEADER, 0);
  6.     curl_setopt($ch, CURLOPT_VERBOSE, 0);
  7.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  8.     curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible;)");
  9.     curl_setopt($ch, CURLOPT_URL, $url);
  10.     curl_setopt($ch, CURLOPT_POST, true);
  11.     $post = array(
  12.         "photo"=>"@photo.jpg",
  13.     );
  14.     curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
  15.     $response = curl_exec($ch);
  16.  
  17.  echo $response;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement