Jump to content

Using cURL problem


samsina

Recommended Posts

Guys I am really stock... I need to use CURL to fetch a link and get its results. I have the wamps 5 1.7.2 (windows, apache, mysql, php) pre packages installed. Activate the php extention php_curl and running it gave me nothing back (just a blank page) ??? ??? ??? ???

 

<?php

// create a new curl resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.google.com/");

// grab URL and pass it to the browser
curl_exec($ch);

// close curl resource, and free up system resources
curl_close($ch);

?>

 

while dumping it into my personal web host account it works. So I assume, i have left something off the php installation. can any one help me out???

Link to comment
https://forums.phpfreaks.com/topic/67465-using-curl-problem/
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.