Skip to content

Instantly share code, notes, and snippets.

@veb
Created September 10, 2015 17:12
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 veb/2f1c8bbdcde2ee630279 to your computer and use it in GitHub Desktop.
Save veb/2f1c8bbdcde2ee630279 to your computer and use it in GitHub Desktop.
articles-9
<?php
# ...
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt'); // set cookie file to given file
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt'); // set same file as cookie jar
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment