<?php

$url 
$_REQUEST['q'];

$s file_get_contents($url);

header('Content-type: text/plain');

// notify users of an update
echo "http://i192.photobucket.com/albums/z150/supdtr00per/newcraigslist.png\n";

preg_match_all('/<img src="([^"]+)"/',$s,$out,PREG_PATTERN_ORDER);
$srcs = array();
foreach (
$out[1] as $o) {
  echo 
$o "\n";
}

?>