What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » General » Forum & Website » Changing Avatars

Changing Avatars
Author: Message:
KeyStorm
Elite Member
*****

Avatar
Inn-sewer-ants-pollie-sea

Posts: 2156
Reputation: 45
38 / Male / –
Joined: Jan 2003
RE: Changing Avatars
right, you'll only have to change the data where I put "//and so on". There you can add more or leave less items. The HTML is for the GUI thing.
Without GUI it would be:
code:
<?PHP
$pics["pic"] = array (
'avatar1.jpg',
'avatar2.jpg' ,
'avatar3.jpg'     //and so on
);


if(empty($i)) $i = time()%sizeof($pics["pic"]);
else $i--;
$filename = $pics["pic"][$i];

header ('Content-type: image/jpeg');
header( 'Content-Disposition: attachment; filename=avatar');
$f = fopen ($filename, 'rb');
fpassthru ($f); }

?>

It's not exactly a webform, but it's CGI, though. I also though PHP was hard before :P.
04-25-2004 10:30 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Changing Avatars - by twobluestripes on 04-25-2004 at 09:53 PM
RE: Changing Avatars - by .blade// on 04-25-2004 at 09:56 PM
RE: Changing Avatars - by KeyStorm on 04-25-2004 at 10:10 PM
RE: Changing Avatars - by twobluestripes on 04-25-2004 at 10:25 PM
RE: Changing Avatars - by KeyStorm on 04-25-2004 at 10:30 PM
RE: Changing Avatars - by twobluestripes on 04-25-2004 at 10:35 PM
RE: Changing Avatars - by KeyStorm on 04-25-2004 at 10:39 PM
RE: Changing Avatars - by twobluestripes on 04-25-2004 at 10:49 PM
RE: Changing Avatars - by .blade// on 04-25-2004 at 10:57 PM
RE: Changing Avatars - by twobluestripes on 04-25-2004 at 11:14 PM
RE: Changing Avatars - by lizard.boy on 04-25-2004 at 11:40 PM
RE: Changing Avatars - by twobluestripes on 04-25-2004 at 11:59 PM
RE: Changing Avatars - by bach_m on 04-26-2004 at 12:05 AM
RE: Changing Avatars - by twobluestripes on 04-26-2004 at 12:08 AM
RE: Changing Avatars - by .blade// on 04-26-2004 at 12:38 AM
RE: Changing Avatars - by twobluestripes on 04-26-2004 at 12:40 AM
RE: Changing Avatars - by bach_m on 04-26-2004 at 12:41 AM
RE: Changing Avatars - by twobluestripes on 04-26-2004 at 12:43 AM
RE: Changing Avatars - by bach_m on 04-26-2004 at 12:46 AM
RE: Changing Avatars - by twobluestripes on 04-26-2004 at 01:07 AM
RE: Changing Avatars - by bach_m on 04-26-2004 at 01:27 AM
RE: Changing Avatars - by twobluestripes on 04-26-2004 at 01:34 AM
RE: Changing Avatars - by KeyStorm on 04-26-2004 at 12:53 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