Bueno el otro dia hice este codigo que te muestra las ultimas fotos de tu fotolog.com
<center>
<?php
$fl = $_GET['flog'];
if ($_GET['orden'] == h) { $il = " "; }
elseif ($_GET['orden'] == v) { $il = "</br></br>"; }
$fp = fsockopen("www.fotolog.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br>\n";
} else {
$salida = "GET /".$fl." HTTP/1.0\r\nHost: www.fotolog.com\r\n\r\n";
fwrite ($fp, $salida);
while (!feof($fp)) {
$content = fgets($fp, 128);
if (ereg("rf_src", $content)) {
if (substr($content, 13, 4) == http) {
echo "<a href='http://www.fotolog.com/".$fl."' title='".$fl."'><img class='recentFoto' src='".substr($content, 13,-3)."' width='50' height='50' border='0' alt='drchalao photo '></a>".$il;
}
}
}
fclose ($fp);
}
?>
</center>
/?flog=TUFOTOLOG&orden=H
/?flog=TUFOTOLOG&orden=V