What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Changing Sigs/Avatars

Changing Sigs/Avatars
Author: Message:
user27089
Disabled Account


Posts: 6321
Joined: Nov 2003
Status: Away
RE: Changing Sigs/Avatars
btw, you need to have a host that allows you to use php.

Here is the code anyway

first make a folder, open up notepad, copy and paste the following code into it:

code:
<?php
$dir = "imgs";
$dh = opendir($dir);
$files = array();
while (false !== ($filename = readdir($dh))) {
$files[] = $filename;
}
sort($files);
array_splice($files, 0, 2);
srand( (double) microtime()*1000000 );
$key = array_rand($files);
readfile($dir . "/" . $files[$key]);
?>


the save this file as avatar.php, upload it to the folder that you just made.

Now, inside that folder, make another folder called imgs, now you can just place the images that you want in there, and you're off!!!

Now, all you have to do is link the avatar url to the avatar.php file.

This post was edited on 03-14-2005 at 02:28 PM by user27089.
03-14-2005 01:18 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Changing Sigs/Avatars - by ProblemWv Authority on 03-14-2005 at 01:08 PM
RE: Changing Sigs/Avatars - by user27089 on 03-14-2005 at 01:10 PM
RE: Changing Sigs/Avatars - by ProblemWv Authority on 03-14-2005 at 01:16 PM
RE: Changing Sigs/Avatars - by user27089 on 03-14-2005 at 01:18 PM
RE: Changing Sigs/Avatars - by ProblemWv Authority on 03-14-2005 at 10:30 PM
RE: Changing Sigs/Avatars - by .Roy on 03-15-2005 at 07:00 AM
RE: Changing Sigs/Avatars - by ayjay on 03-15-2005 at 07:14 AM
RE: Changing Sigs/Avatars - by .Roy on 03-15-2005 at 08:01 AM
RE: Changing Sigs/Avatars - by .Roy on 03-15-2005 at 02:29 PM
RE: Changing Sigs/Avatars - by user27089 on 03-23-2005 at 09:55 AM
RE: Changing Sigs/Avatars - by John Anderton on 03-23-2005 at 12:52 PM
RE: RE: Changing Sigs/Avatars - by Ash_ on 03-23-2005 at 01:01 PM
RE: Changing Sigs/Avatars - by John Anderton on 03-23-2005 at 01:05 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