No. The url is valid. I just want to know how to get hold of the contents of this particular one, especially using CURL.
My testbed PHP script for this looks like so :
$url = "http://www.0044.co.uk/Tariffs/Global/calculate-ekit.asp?Action=compute";
$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, "/tmp/cookiejar-$randnum");
curl_setopt($ch, CURLOPT_COOKIEFILE, "/tmp/cookiejar-$randnum");
curl_setopt($ch, CURLOPT_REFERER, $reffer);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data2 = curl_exec($ch);
curl_close($ch);