Page 1 of 1

[solved]cURL help

Posted: Mon Mar 05, 2007 5:44 pm
by giarkcom
i am using cURL and need some help

how do i get the response from my url to a string?

code

Code: Select all

<?php 
       $ch = curl_init("no see url for you!");
       $data = curl_exec($ch);
         curl_close($ch);  
?>
please help
-ty, kraig

Posted: Mon Mar 05, 2007 9:16 pm
by feyd
Set the proper RETURN option.

Posted: Tue Mar 06, 2007 8:26 am
by giarkcom
thank you it works now