hi
i am using this code to curl any URL to fetching. any url works. but this url http://www.aftab.ir/prices_list/category.php?id=1 does not fetching. (this url works when you open browser and enter this url)
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, "http://www.aftab.ir/prices_list/category.php?id=1");
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$mswdata = curl_exec ($curl);
curl_close ($curl);
echo $mswdata;