Sorry, kids- this thing is killing my bandwidth. Try one of the other viewers: toothpastefordinner ** beige.f2s.com ** nonexiste.net

Here's the code for the page, in case you want to run it yourself:

function is_img($recent_image) { return $recent_image['tag'] == 'RECENT-IMAGE'; } $handle = fopen("http://www.livejournal.com/stats/latest-img.bml", "r"); $ljxml = ""; while (!feof($handle)) { $ljxml .= fgets($handle); } fclose($handle); $p = xml_parser_create(); xml_parse_into_struct($p, $ljxml, $vals); xml_parser_free($p); $imgs = array_filter($vals, "is_img"); $num_imgs = sizeof($imgs); $ct = 1; foreach ($imgs as $recent_image) { echo ""; $ct++; }