HabboxWiki needs you!
Are you a Habbo buff? Or maybe a rare trader with a bunch of LTDs? Get involved with HabboxWiki to share your knowledge!
Join our team!
Whether you're raving for rares, excited for events or happy helping, there's something for you! Click here to apply
Need a helping hand?
Check out our guides for all things to help you make friends, make rooms, and make money!


Page 3 of 3 FirstFirst 123
Results 21 to 28 of 28
  1. #21
    Join Date
    Nov 2008
    Posts
    217
    Tokens
    1,822
    Habbo
    eLv

    Latest Awards:


  2. #22
    Join Date
    Mar 2008
    Location
    Swindon, UK
    Posts
    1,274
    Tokens
    187
    Habbo
    :Ltd

    Latest Awards:

    Default

    POST page

    That means DATA has to be POSTED (If you don't know what that means... oh my days, go move further to New Zealand), in order to POST data you need to know the data that needs to be posted (post field), for example it could be "Username" or it could be "UserID" or it could be "Email" (if you didn't realise, it could be "YoureStupid" and the value could equal True. Or anything by that matter.), if he found that there's a page that needs data to be POSTED to he will most likely know the fields.

    Do you understand that?

    @Scold, lovely its in Spanish lool, I can see what I can pick out though.
    Edit: I couldn't re in act what he was trying to do with a simple form, so I have no idea if it still works any more. When I checked habbo UK, there was no POST pages except for the one requesting buddies etc (didnt really look into it).
    Last edited by Protege; 15-10-2009 at 09:41 AM.
    Hi, names James. I am a web developer.

  3. #23
    Join Date
    Nov 2008
    Posts
    217
    Tokens
    1,822
    Habbo
    eLv

    Latest Awards:

    Default

    Yea like what Protege said, I failed in explaining. I'd provided the fields @ my previous post so if you want to try doing it, feel free.

    @Protege, google translator does the job well.






  4. #24
    Join Date
    Oct 2005
    Location
    Melbourne, Australia
    Posts
    7,554
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Protege View Post
    POST page
    *snip*
    I know what a post page is.. but what you wrote didn't make sense, shall i make it bold?

    Quote Originally Posted by Protege View Post
    define what you have to post then and the post fields?

  5. #25
    Join Date
    Mar 2008
    Location
    Swindon, UK
    Posts
    1,274
    Tokens
    187
    Habbo
    :Ltd

    Latest Awards:

    Default

    Makes sense to me soz, might be cause im just great.

    & Lol@Me for being blind and not seeing.
    Last edited by Protege; 15-10-2009 at 09:46 AM.
    Hi, names James. I am a web developer.

  6. #26
    Join Date
    Apr 2008
    Location
    Derby
    Posts
    4,668
    Tokens
    262

    Latest Awards:

    Default

    LOl. i know how it works. it was just the comment blinger had left in God. :/

  7. #27
    Join Date
    Sep 2007
    Posts
    56
    Tokens
    0

    Default

    i remember somebody released a habboClass thing which could get all this info. ill try and dig it out for you.
    edit:
    PHP Code:
    <?php 

    class habboClass 


        var 
    $data
        var 
    $habboname
        var 
    $hotel
        var 
    $online
        var 
    $private
        var 
    $banned
        var 
    $actual
        var 
    $motto
        var 
    $badge
        var 
    $figure
        var 
    $birthdate
        var 
    $normal
        var 
    $name

        function 
    habboClass($habboname$hotel
        { 
            
    $this->habboname $habboname
            
    $this->hotel $hotel
            
    $this->data file_get_contents("http://habbo." $hotel "/home/" $habboname); 
             
            if (
    eregi("This page is not available anymore"$this->data)){ 
            
    $this->banned true
            }else{ 
            
    $this->banned false
            } 
             
            if (
    eregi("habbo_online_anim.gif"$this->data)){ 
            
    $this->online true
            }else{ 
            
    $this->online false
            } 
             
            if (
    eregi('<div id="page-headline-text">Habbo Homes</div>'$this->data)){ 
            
    $this->actual true
            }else{ 
            
    $this->actual false
            } 
             
            if (
    eregi('marked this page as private.'$this->data)){ 
            
    $this->private true
            }else{ 
            
    $this->private false
            } 
             
            
    $motto explode('<div class="profile-motto">'$this->data); 
            
    $motto explode('</div>'$motto[1]); 
            
    $motto trim($motto[0]); 
            
    $this->motto str_replace('        <div class="clear">'''$motto); 
             
            if (
    eregi("c_images/album1584/"$this->data)){ 
                
    $badge explode('http://images.habbohotel.' $this->hotel 
                    
    '/c_images/album1584/'$this->data); 
                
    $badge explode('.gif'$badge[1]); 
                
    $badge trim($badge[0]); 
                
    $this->badge "http://images.habbohotel." $this->hotel "/c_images/album1584/" $badge 
                    
    ".gif"
            }else{ 
                
    $this->badge false
            } 
             
            
    $this->figure "http://campaigns.habbo.com/0702/app/habboimage.php?habboname=".$this->habboname."&site=http://www.habbo.".$this->hotel
             
            
    $birthdate explode('<div class="birthday date">'$this->data); 
            
    $birthdate explode('</div>'$birthdate[1]); 
            
    $this->birthdate trim($birthdate[0]); 
             
            if (!
    $this->banned and !$this->private and $this->actual){ 
                
    $this->normal true
            }else{ 
                
    $this->normal false
            } 
             
            
    $name explode('<span class="name-text">'$this->data); 
            
    $name explode('</span>'$name[1]); 
            
    $name trim($name[0]); 
            
    $this->name $name
             
        } 

    }
    use like

    $habbo = new habboClass();
    $habbo->habboClass($_GET['habboname'],$_GET['hotel');

    echo $habbo->habboname;


    or w/e
    it uses some depricated functions but it should be okay.
    Last edited by Dromenail; 15-10-2009 at 03:10 PM.

  8. #28
    Join Date
    Feb 2005
    Location
    Norway/Sweden
    Posts
    88
    Tokens
    0

    Default

    Anyone know how to do this today with the page http://www.habbo.nl/habblet/habbosea...tring=Lugrguff ?
    Greetings//Luggruff

    .Emoticons are art too - remember that!
    Emoticons used by me in this forum other than the listed ones may NOT be used for personal use in the forum, or anywhere else! These are emoticons I have made explicit for the HLforum.net and they will soon function as emoticons there!

    .Pixelartist

    My art here on habboxforum:
    Coke Machine (Incredible.. read the reviews ;P)
    Fame - So you say you can dance?

Page 3 of 3 FirstFirst 123

Posting Permissions

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