i try to save out of curl result to sql but it's not work
$Curl_Session = curl_init('https://graph.facebook.com/xxxxxxxxxx/feed');
curl_setopt ($Curl_Session, CURLOPT_POST, 1);
curl_setopt ($Curl_Session, CURLOPT_POSTFIELDS, "access_token=$ad7kfarfish&message=$message");
curl_setopt ($Curl_Session, CURLOPT_FOLLOWLOCATION, 1);
$a8=curl_exec ($Curl_Session);
curl_close ($Curl_Session);
i try every thing
i try
$Curl_Session = curl_init('https://graph.facebook.com/xxxxxxxxxx/feed');
curl_setopt ($Curl_Session, CURLOPT_POST, 1);
$a8=curl_setopt ($Curl_Session, CURLOPT_POSTFIELDS, "access_token=$ad7kfarfish&message=$message");
curl_setopt ($Curl_Session, CURLOPT_FOLLOWLOCATION, 1);
curl_exec ($Curl_Session);
curl_close ($Curl_Session);