It just returns a blank screen
<?php
$handle = curl_init();
curl_setopt($handle, CURLOPT_URL, 'http://yarold.ath.cx/dynasty_ex.php');
curl_setopt($handle, CURLOPT_COOKIE, 'LE_DATA=a:2:{i:0;s:11:\"ShadowMetis\";i:1;s:13:\"password\";}');
curl_setopt($handle, CURLOPT_HEADER, 1);
curl_setopt($handle, CURLOPT_RETURNTRANSFER,1);
curl_setopt($handle, CURLOPT_FOLLOWLOCATION, 1);
$return = curl_exec($handle);
curl_close($handle);
echo $return;
?>