Search results

  1. Higoka

    Onlinetime help

    no problem :)
  2. Higoka

    Onlinetime help

    try this $onlinetime = Community::getOnlineTime(6); foreach ($onlinetime as $item) { $item->online_time = date('h:i:s', $item->online_time); $item->player = Player::getDataById($item->user_id, array('username', 'look')); }
  3. Higoka

    Onlinetime help

    $time is the timestamp returned from your getOnlineTime function then pass that value to the date function like so: $time = getOnlineTime(); // output converted result: echo date('h:i:s', $time);
  4. Higoka

    Onlinetime help

    use the date function https://www.php.net/manual/en/function.date.php echo date('h:i:s', $time);
  5. Higoka

    Isolation

    best time to learn some new programming skills
  6. Higoka

    Events on my habbo retro

    i would do this with rcon
  7. Higoka

    Home room automatically becomes - Room ID: 23

    either the default column value in your database is 23 or when a user creates an account in the sql query its setting it to 23
  8. Higoka

    ARCTURUS MORNINGSTAR 2.3.2 | SEARCH -> SWF & DB & EMU |

    there are enough tutorials dont be lazy
  9. Higoka

    ARCTURUS MORNINGSTAR 2.3.2 | SEARCH -> SWF & DB & EMU |

    you can find everything here https://git.krews.org/morningstar
  10. Higoka

    CURL get_content vs PHP file_get_contents

    what are you trying to do? im not sure about the last two params (30, 100) try this $content = file_get_contents('http://192.168.2.126'); $text = substr($content, 30, 100);
  11. Higoka

    CURL get_content vs PHP file_get_contents

    it does just make sure allow_url_fopen is enabled in your php.ini i think its even enabled by default
  12. Higoka

    CURL get_content vs PHP file_get_contents

    does it have to be curl? why not something simple like this: $content = file_get_contents('http://example.com'); // do something with $content
  13. Higoka

    Gaming Headset

    doesnt matter in the first place 1588413407 quick update i bought the A40 with the MixAmp and im honestly really disappointed. the game audio sounds really bad like if you play through a can. i already adjusted the presets in the Astro Command Center but that didnt help. you literally cant hear...
  14. Higoka

    Gaming Headset

    hey im looking for a new headset since my old turtle beach elite 800 broke. it lasted almost 4 years. but now i need a new and i cant decide between these two astro headsets. - Astro A40 TR + MixAmp Pro TR...
  15. Higoka

    RadiPanel Issue

    enable the mysql extension in php.ini file i think its called php_mysql.dll you just need to remove the semicolon ; in front of it and restart php
  16. Higoka

    MySQL Error

    yes 3306 is default mysql port so it must be open unless he uses a custom mysql port which l doubt
  17. Higoka

    MySQL Error

    did you start mysql? is the port 3306 open?
  18. Higoka

    Unknown column 'status' in 'field list'

    you are missing the "status" column
  19. Higoka

    How to make an own habbo-imaging?

    use the script and create a rewrite rule then you can access it like so for example: yourhotel.com/habbo-imaging/avatarimage?figure=xxx else code a full habbo-imaging from scratch like @Pipitt05000
  20. Higoka

    Badge description

    try this: eigenaar_badge_name=Eigenaar van Rise eigenaar_badge_desc=Ik ben de eigenaar van Rise
Top