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!


Results 1 to 9 of 9
  1. #1
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default Any One Boared and want to make these?

    Well, I Need a system where our Radio Managers can add a DJ, and it adds it to the staff page, and I Need A Rare Value System. Where rare valuests can Edit the values, can any 1 make them

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

    Latest Awards:

    Default

    Yeah i can make a rare values system. Coz i cba to do the other one...

    Shall i PM you one of post it?

  3. #3
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default

    Quote Originally Posted by J-Rap View Post
    Yeah i can make a rare values system. Coz i cba to do the other one...

    Shall i PM you one of post it?
    Yes (Didnt understand 'one of post it' but ok

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

    Latest Awards:

    Default

    i mean "or post it" lol

  5. #5
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default

    oh rite lol, any of them, up to u

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

    Latest Awards:

    Default

    Ok. Please note i havn't checked it

    Also. I detest you for using a techtuts user system :@
    This is coding off the top of my head. No positioning just plain pages etc.

    Now.... Providing you know how to add databases and tables to mysql please do the following:

    Do a Database called rares

    Then please add a table called values

    In that table have these rows:
    Name
    Image
    Value


    Just use your db file you got. It'll do fine i reckon.

    Righteo then, so we're not using sessions, we're using cookies :@ #

    Heres the display page:

    PHP Code:
    <?
    ob_start
    ();
    include(
    "config.php");
    $values mysql_query("SELECT * FROM values");
    $final mysql_fetch_array($values);
    echo (
    "
     
    <CENTER><B>Rare Values</B></CENTER>
    Name: 
    $values[name]<BR>
    <img src=
    $values[image]><BR>
    Value: 
    $values[value]<BR>
    "
    );
    ?>


    Now thats the display page... Please note that the image section in the database is the name of the file. Please change the URL in the display page....


    Heres the insert page... just create a new user level for Rare Values Reporters? Coz i cba to code another user system :p


    PHP Code:
    <?
    ob_start
    ();
    include (
    "config.php");
    if (!
    $logged[username] = '5'){
    echo (
    "You are not authorised to view this page");
    }
    else
    {
    if (
    $_POST[submit]){
    $name $_POST[name];
    $image $_POST[image]
    $value $_POST[value];
    $insert = ("INSERT INTO values (name, image, value) VALUES ('$name,'$image','$value')
    }
    else
    {
    echo ("
    <FORM method=POST name=submit>
    Name:<input type=text name=name><BR>
    Image:<input type=text name=image><BR>
    Value: <input type=text name=value><BR>
    <
    input type=submit>
    ");
    }
    }
    ?>


    And thats it mate i think lol.. I probs made a few muffups....

    Rep? rofl


    TELL ME ANY ERRORS PLZ LOL
    Last edited by Jackboy; 15-09-2006 at 09:23 PM. Reason: Forgot to add the bit bout errors

  7. #7
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default

    Quote Originally Posted by .:jack120:. View Post
    Yes (Didnt understand 'one of post it' but ok
    Quote Originally Posted by J-Rap View Post
    Ok. Please note i havn't checked it

    Also. I detest you for using a techtuts user system :@
    This is coding off the top of my head. No positioning just plain pages etc.

    Now.... Providing you know how to add databases and tables to mysql please do the following:

    Do a Database called rares

    Then please add a table called values

    In that table have these rows:
    Name
    Image
    Value


    Just use your db file you got. It'll do fine i reckon.

    Righteo then, so we're not using sessions, we're using cookies :@ #

    Heres the display page:

    PHP Code:
    <?
    ob_start
    ();
    include(
    "config.php");
    $values mysql_query("SELECT * FROM values");
    $final mysql_fetch_array($values);
    echo (
    "
     
    <CENTER><B>Rare Values</B></CENTER>
    Name: 
    $values[name]<BR>
    <img src=
    $values[image]><BR>
    Value: 
    $values[value]<BR>
    "
    );
    ?>


    Now thats the display page... Please note that the image section in the database is the name of the file. Please change the URL in the display page....


    Heres the insert page... just create a new user level for Rare Values Reporters? Coz i cba to code another user system :p


    PHP Code:
    <?
    ob_start
    ();
    include (
    "config.php");
    if (!
    $logged[username] = '5'){
    echo (
    "You are not authorised to view this page");
    }
    else
    {
    if (
    $_POST[submit]){
    $name $_POST[name];
    $image $_POST[image]
    $value $_POST[value];
    $insert = ("INSERT INTO values (name, image, value) VALUES ('$name,'$image','$value')
    }
    else
    {
    echo ("
    <FORM method=POST name=submit>
    Name:<input type=text name=name><BR>
    Image:<input type=text name=image><BR>
    Value: <input type=text name=value><BR>
    <
    input type=submit>
    ");
    }
    }
    ?>


    And thats it mate i think lol.. I probs made a few muffups....

    Rep? rofl


    TELL ME ANY ERRORS PLZ LOL
    can u make the database, so i can put it in, Im not good with making them, only editing them

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

    Latest Awards:

    Default

    well..

    i dunno how coz i never needed to do em..
    Just go on techtuts and edit lol

  9. #9
    Join Date
    Sep 2006
    Posts
    450
    Tokens
    0

    Default

    I could make both of them for a price.

Posting Permissions

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