Browser result is different than php curl output. How to fix it?
http://kat.ph/applications/?rss=1
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://kat.ph/applications/?rss=1");
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/rss+xml; charset=ISO-8859-1", "Content-length: "));
$result = curl_exec($ch);
curl_close($ch);
echo $result;