Search results

  1. Higoka

    Best game released this holiday season?

    I can recommend the new star wars, even though i never was a fan of star wars or the movies. kinda reminds me of god of war. im usually a huge cod fanboy but mw has to much campers and claymores in every corner i cant enjoy it much so therefore i just play every once in a while. i often play...
  2. Higoka

    Habbo Status?

    last time i played habbo was about 2009. now im just here because im interested in the development. i learned php html css js mysql and other stuff just through habbo all by myself
  3. Higoka

    HabboPixel - Login/Register Help

    it will protect against sql injections but there is alot more to consider like xss attacks, session hijacking and so on
  4. Higoka

    JAVASCRIPT

    would be good if you show us your code and also the dev tools console
  5. Higoka

    HabboPixel - Login/Register Help

    if you look at the PDO::query description: public PDO::query ( string $statement ) : PDOStatement you see that it doesn't allow more than 1 argument. in your code however: $bdd3 = $pdo->query('INSERT INTO users (username, password, mail, credits, vip_points, activity_points, look, motto...
  6. Higoka

    HabboPixel - Login/Register Help

    do you even see the echo 'success'; after you submitted the form?
  7. Higoka

    HabboPixel - Login/Register Help

    it could be because the ip_last also needs to have a value. you only have ip_reg
  8. Higoka

    HabboPixel - Login/Register Help

    enable error reporting and look if any errors get logged also use prepared statements: $query = $pdo->prepare(...); $query->execute([$_POST['username'], ...]);
  9. Higoka

    [Help needed!] Navigator/Cata SWF Styling

    i dont know tbh. never used it
  10. Higoka

    [Help needed!] Navigator/Cata SWF Styling

    for the color you can use habboui editor. just search for the hex and replace with new color
  11. Higoka

    [HELP REQUEST] HTTP ERROR 500

    some more information? show the php logs, enable error logs etc
  12. Higoka

    SSO Ticket ?

    UPDATE users SET auth_ticket = NULL WHERE username = 'yourname' LIMIT 1;
  13. Higoka

    PHP $_POST check if empty

    please explain what exactly do you want. i dont see any problem with the code?
  14. Higoka

    PHP $_POST check if empty

    yes of course, then you do something like this: $code = $_POST['middlename'] ?? null;
  15. Higoka

    PHP $_POST check if empty

    i dont know what you mean
  16. Higoka

    PHP $_POST check if empty

    simple as that if (isset($_POST['middlename'])) { $code = "SET middlename = '{$_POST['middlename']}'"; } else { $code = 'SET middlename = NULL'; }
  17. Higoka

    I need the most recent clothing pack for plus emu. Please help

    download the latest clothes and other stuff directly from habbo: https://github.com/higoka/habbo-downloader
  18. Higoka

    HabboPixelCMS [2019CMS] [Original]

    ugly af
  19. Higoka

    Client stuck at 76%

    you also need to change it in client.php (or whatever its called)
  20. Higoka

    Client stuck at 76%

    game.tcp.bindip=your server ip mus.tcp.bindip=your server ip also change to your server ip in client.php
Top