Código PHP:
function comment(){
$url ="http://www.fotolog.com/jonatanlc/gb.block?comment=104588696&photo=22804534";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
curl_setopt($ch, CURLOPT_URL, $url);
//ob_start();
echo curl_exec ($ch);
//ob_end_clean();
curl_close ($ch);
}
Saludos