What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » PHP MSN UserID [SOLVED]

PHP MSN UserID [SOLVED]
Author: Message:
MeEtc
Patchou's look-alike
*****

Avatar
In the Shadow Gallery once again

Posts: 2200
Reputation: 60
38 / Male / Flag
Joined: Nov 2004
Status: Away
RE: PHP MSN UserID
PHP code:
function get_msnid ($email){
   $email = strtolower($email);
   for ($msnid=0,$i=0; $i < strlen($email); $i++) {
      $msnid *= 101;
      $msnid += ord($email[$i]);
      while($msnid >= pow(2,32))
         $msnid -= pow(2,32);
   }
   return $msnid;
}

[Image: signature/]     [Image: sharing.png]
I cannot hear you. There is a banana in my ear.
01-31-2009 08:00 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
PHP MSN UserID [SOLVED] - by Spunky on 01-31-2009 at 07:56 PM
RE: PHP MSN UserID - by MeEtc on 01-31-2009 at 08:00 PM
RE: PHP MSN UserID - by Spunky on 01-31-2009 at 08:02 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