Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by hacker_kts

  1. hacker_kts

    Learning Php?

    Hey maybe you wanna try this first. The website I start learning PHP, You must be registered for see element. You must be registered for see element. Make sure you know how to use variables and if statement in PHP then proceed to next step. You must be registered for see element. There's no...
  2. hacker_kts

    MYSQLi, have I done it correctly? PHP

    Hmmm! Just a question before answering yours, what's the different for your column reg_ip and last_ip since they are inserting the same value ($ip) and before before you insert all your value into database, just add a addslashes for all your variable. for example, $username =...
  3. hacker_kts

    For your information

    Rest in peace, thanks for all the hardwork you did for RZ.
  4. hacker_kts

    [PHP][AJAX] Striping everything but numbers from a string

    Well I think this is a shortest way to strip off everything except number, maybe you can try it. $text = "hello123"; echo ereg_replace('[^0-9]',"",$text); Regards, TS
  5. hacker_kts

    [PHP] Store IP into a .txt file

    This is a better way to get IP address if (getenv("HTTP_CLIENT_IP")) $ip = getenv("HTTP_CLIENT_IP"); else if(getenv("HTTP_X_FORWARDED_FOR")) $ip = getenv("HTTP_X_FORWARDED_FOR"); else if(getenv("REMOTE_ADDR")) $ip = getenv("REMOTE_ADDR"); else $ip = "0.0.0.0"; it will also...
  6. hacker_kts

    Medabots Online - Beta V.1

    Just a little suggestion, it would be nice if you put up some informations on the game (like pictures, story or even demo). Keep it up!(:
  7. hacker_kts

    [PHP] How To Make A Talking Bot

    re: [PHP][Tutorial] How To Make A Talking Bot Well, if you're making a talking bot. I believe it's not a best way. Just my 2 cents comment.
  8. hacker_kts

    [PHP]Pages

    Well, this article might be useful for you. You must be registered for see element.
  9. hacker_kts

    [HELP / PHP] What Is The Easyest Way To Learn PHP?

    You just need a lot of practice and try to learn from open source script. Whenever you don't understand about the function or anything, just refer it at php.net
  10. hacker_kts

    [HTML] Links

    Are you trying to display it on the forum? Just click on the bbcode images.
  11. hacker_kts

    [Flash/PHP/MySQL] Login system

    Well, I'm not familiar with flash but for MySQL. If you want to make new database or create new column, just go to phpMyAdmin. Run WAMP, left click on the icon at the bottom right and click phpMyAdmin.
  12. hacker_kts

    [PHP] Log In

    Re: [Help] Php Log In I'm getting error at account registration page.
  13. hacker_kts

    [Release]KearTS CMS v2.2

    My apologise, my domain expired already. Well, this project is kind of dead. Maybe I will update it when I had the time.
  14. hacker_kts

    [PHP+MySQL]Approval Form

    Count how many tick it got and place it in the statement.
  15. hacker_kts

    [PHP+MySQL]Approval Form

    Well, I didn't read the entire thread. But you might wanna try to make a form with tick option, then you do loop on your script for each update query.
Back
Top