Forum Moderators: coopster
and if typed into a browser window works fine as I am taken to posting page but when I try to use cURL it doesn't work - I get a message saying I must be logged in...
Here's my code... any insights much appreciated.
<?php
// INIT CURL
$ch = curl_init();
// SET HTTP LOCATION
curl_setopt($ch, CURLOPT_URL, 'https://post.craigslist.org/den/H/reb/none/x');
// EXECUTE
$content = curl_exec ($ch);
echo $content;
// CLOSE CURL
curl_close ($ch);
?>