What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » PHP Images... I can't make one. :(

PHP Images... I can't make one. :(
Author: Message:
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: PHP Images... I can't make one. :(
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 :P

This post was edited on 01-19-2005 at 05:35 PM by -dt-.
[Image: dt2.0v2.png]      Happy Birthday, WDZ
01-19-2005 05:32 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 12:07 AM
RE: PHP Images... I can't make one. :( - by fluffy_lobster on 01-19-2005 at 04:51 PM
RE: PHP Images... I can't make one. :( - by -dt- on 01-19-2005 at 05:32 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 09:06 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-19-2005 at 09:12 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 09:19 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-19-2005 at 09:34 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 09:36 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-19-2005 at 09:42 PM
RE: RE: PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 09:51 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 09:59 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-19-2005 at 10:37 PM
RE: PHP Images... I can't make one. :( - by -dt- on 01-20-2005 at 07:04 AM
RE: PHP Images... I can't make one. :( - by Moo on 01-20-2005 at 10:24 PM
RE: RE: PHP Images... I can't make one. :( - by -dt- on 01-21-2005 at 04:36 AM
RE: PHP Images... I can't make one. :( - by WDZ on 01-21-2005 at 04:29 AM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 08:30 PM
RE: PHP Images... I can't make one. :( - by segosa on 01-21-2005 at 09:02 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 09:08 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-21-2005 at 09:29 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 09:38 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 09:56 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-21-2005 at 10:01 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 10:05 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 10:07 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-21-2005 at 10:12 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 10:13 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 10:43 PM
RE: PHP Images... I can't make one. :( - by WDZ on 01-21-2005 at 10:59 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-21-2005 at 11:03 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-22-2005 at 12:35 AM
RE: PHP Images... I can't make one. :( - by -dt- on 01-22-2005 at 11:11 AM
RE: PHP Images... I can't make one. :( - by Moo on 01-22-2005 at 03:48 PM
RE: PHP Images... I can't make one. :( - by Moo on 01-22-2005 at 04:25 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On