Jump to content

Cross Domain Uploads


envexlabs

Recommended Posts

Not sure...  Did some research and found this piece of code from LinuxQuestions.

 

$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");

curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);

curl_exec($ch);
curl_close($ch);
fclose($fp);
?> 

Link to comment
https://forums.phpfreaks.com/topic/137576-cross-domain-uploads/#findComment-719077
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.