Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 3 123 LastLast
Results 1 to 10 of 21
  1. #1

    Default Private Messaging System

    Hi,

    I'm in need of a private messaging system that comes with a login. Or perhaps an existing user system with a messaging system built in.

    Any ideas?

  2. #2
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    I could easily build one for you if you wanted. (free because I'm kind)

  3. #3

    Default

    Well if you would I'd appreciate it.

    All it needs is a login, inbox, outbox, send message, sent messages, nothing too fancy. An admin panel is optional (for deleting/viewing all mail).

    Thanks a lot!

  4. #4
    Join Date
    Dec 2005
    Posts
    6,228
    Tokens
    1,145

    Latest Awards:

    Default

    I could do with one of these really.
    i'm out of touch, i'm out of love
    i'll pick you up when you're getting down
    and out of all these things i've done
    i think i love you better now

  5. #5
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    Started coding it now.

  6. #6
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    http://rapidshare.com/files/170615372/pm.zip

    Didn't have the time to finish it, sorry.

  7. #7

    Default

    How far is it, and is anyone else up for the challenge?

  8. #8
    Join Date
    Sep 2005
    Location
    East London
    Posts
    3,028
    Tokens
    0

    Latest Awards:

    Default

    Just looking at a small part of your code.

    PHP Code:
    {
        public function 
    mysql_connect$hostname$username$password$database )
        {
            
    $db_connect mysql_connect$hostname$username$password );
            
    $sr_connect mysql_select_db$database );
        } 
    Why have you used variable names. You can just have

    PHP Code:
    {
        public function 
    mysql_connect$hostname$username$password$database )
        {
            
    mysql_connect$hostname$username$password );
            
    mysql_select_db$database );
        } 
    You don't actually need to define variables unless you plan to use them later or w/e.

    But nice of you for trying Also why have you put the public function as an actual reserved function? Im confused. Well have fun learning PHP
    Last edited by Jackboy; 05-12-2008 at 10:25 PM.

  9. #9
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Jackboy View Post
    Just looking at a small part of your code.

    PHP Code:
    {
        public function 
    mysql_connect$hostname$username$password$database )
        {
            
    $db_connect mysql_connect$hostname$username$password );
            
    $sr_connect mysql_select_db$database );
        } 
    Why have you used variable names. You can just have

    PHP Code:
    {
        public function 
    mysql_connect$hostname$username$password$database )
        {
            
    mysql_connect$hostname$username$password );
            
    mysql_select_db$database );
        } 
    You don't actually need to define variables unless you plan to use them later or w/e.

    But nice of you for trying Also why have you put the public function as an actual reserved function? Im confused. Well have fun learning PHP
    public is a keyword, so the function in the class is publicly usable, you should read up on it ^_^

  10. #10
    Join Date
    Sep 2005
    Location
    East London
    Posts
    3,028
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Calon View Post
    public is a keyword, so the function in the class is publicly usable, you should read up on it ^_^
    Well i said what i was trying to say wrong

    I was trying to say, whats the point in using public function mysql_connect when mysql_connect is already useable without that silly function there...

Page 1 of 3 123 LastLast

Posting Permissions

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