Jump to content

My web host wont turn on Curl.dll


ardentcrest

Recommended Posts

My web host wont turn on Curl.dll

is there any other way to do this with out using Curl

 

 

 

#----------------------------------------------------------------------------

# Curl code to store XML data from PWA in a variable

#----------------------------------------------------------------------------

$ch = curl_init();

$timeout = 0; // set to zero for no timeout

curl_setopt($ch, CURLOPT_URL, $file);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

curl_setopt($ch, CURLOPT_HTTPHEADER, array(

    'Authorization: AuthSub token="' . $GDATA_TOKEN . '"'

  ));

$addressData = curl_exec($ch);

curl_close($ch);

Link to comment
https://forums.phpfreaks.com/topic/249347-my-web-host-wont-turn-on-curldll/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.