after you can create an image with php + write text on it you will need to download the site you wish to parse into a varible a common (and semi good) way to do it is like
code:
<?
$handle = fopen("http://www.bungie.net/Stats/PlayerStats.aspx?player=guyguyme2003", "rb");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
?>
(you can read about
fopen
here
fread
here
fclose
here
)
then $contents will hold the entire stat page which you will have to parse and cache then print onto the image.
It shouldn't be too hard if you need any help pm me something