Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16
  1. #11
    Join Date
    Apr 2006
    Posts
    1,463
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Taaaii View Post
    As you may know i am learning PHP at the moment and ive been going thru tutorials and tutorials and i have created myself this ;]

    www.ohupload.com/user

    i would love to learn more but dnt know where could someone suggest?
    You got this from
    ForumNerds
    I did it www.habbishfm.com/user/
    It works all ok you can Reg user etc. But when you login it says wrong name or pass.

  2. #12
    Join Date
    Dec 2006
    Location
    Swindon
    Posts
    3,299
    Tokens
    215
    Habbo
    dunko

    Latest Awards:

    Default

    md5 then sha1

  3. #13
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    Quote Originally Posted by Blob View Post
    md5 then sha1
    Yeah, you could do that OR go over the top like me ^_^

    PHP Code:
    function encrypt$string) {

            
    $string md5$string );
            
            
    $string base64_encode$string );
            
            
    $string md5$string );
            
            
    $string base64_decode$string );
            
            
    $string md5$string );
            
            
    $a1 strlen$string );
            
            
    $a2 base64_decode$string );
                    
            
    $a4 ""$a1 .""$a2 .""$a1 ."";
            
            
    $crypt md5$a4 );
            
            
    $crypt sha1$crypt );
            
            
    $string crypt$crypt"POWERpanelEncryptionOhYeah!" );
            
            return 
    $string;



  4. #14
    Join Date
    Oct 2007
    Posts
    4
    Tokens
    0

    Default can

    can we have the link to download it x]

  5. #15
    Join Date
    Oct 2007
    Location
    Luton, England
    Posts
    1,548
    Tokens
    388
    Habbo
    DeejayMachoo

    Latest Awards:

    Default

    Quote Originally Posted by Invent View Post
    Yeah, you could do that OR go over the top like me ^_^

    PHP Code:
    function encrypt$string) {

            
    $string md5$string );
            
            
    $string base64_encode$string );
            
            
    $string md5$string );
            
            
    $string base64_decode$string );
            
            
    $string md5$string );
            
            
    $a1 strlen$string );
            
            
    $a2 base64_decode$string );
                    
            
    $a4 ""$a1 .""$a2 .""$a1 ."";
            
            
    $crypt md5$a4 );
            
            
    $crypt sha1$crypt );
            
            
    $string crypt$crypt"POWERpanelEncryptionOhYeah!" );
            
            return 
    $string;


    Theres
    |-------------|------|-----|-------|------ WAY This Way --> --|--
    Unsecure Moderate Good Decent Something WAY This Way --> Simon
    Last edited by DeejayMachoo$; 07-11-2007 at 02:26 AM.


  6. #16
    Join Date
    Dec 2005
    Location
    South West England
    Posts
    612
    Tokens
    0

    Default

    Nice login page.

    Ollz

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •