[solved]cURL help
Posted: Mon Mar 05, 2007 5:44 pm
i am using cURL and need some help
how do i get the response from my url to a string?
code
please help
-ty, kraig
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);
?>-ty, kraig