Skip to content

Instantly share code, notes, and snippets.

@synCRAUNicity
Last active December 12, 2015 01:48
Show Gist options
  • Save synCRAUNicity/4693599 to your computer and use it in GitHub Desktop.
Save synCRAUNicity/4693599 to your computer and use it in GitHub Desktop.
PHP: Start cURL session
$url = "http://www.example.org/";
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_URL, $url);
$data = curl_exec($curl);
curl_close($curl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment