Skip to content

Instantly share code, notes, and snippets.

@gamikun
Last active June 29, 2016 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gamikun/e419ee97be8f37ec914a to your computer and use it in GitHub Desktop.
Save gamikun/e419ee97be8f37ec914a to your computer and use it in GitHub Desktop.
Very simple HTTP Request with PHP cURL
<?php
$url = curl_init("http://teamlod.es/imga/imgur.php");
curl_setopt($url, CURLOPT_RETURNTRANSFER, 1);
echo curl_exec($url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment