Last active
June 29, 2016 18:23
-
-
Save gamikun/e419ee97be8f37ec914a to your computer and use it in GitHub Desktop.
Very simple HTTP Request with PHP cURL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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