Jump to content
MakeWebGames

hamster01

Members
  • Posts

    1,108
  • Joined

  • Last visited

    Never

Everything posted by hamster01

  1. Re: RITE!, IM GONNA BUY A HOSTER, PLZ HELP!?!?!?!?!?! You get what you pay for. ;| I'm not going to give you my msn, sorry. I suggest www.GalaxyVisions.com . http://galaxyvisions.com/cpanel_hosting.html
  2. Re: is ther any good free webhodt sites with cpanel 11 and cron jobs 10 users :/
  3. Re: [FREE] Server Time [v1.1 v2 v1] http://www.google.com/search?q=live+js+clock And from what I know, That will display the users current time, not th server time.
  4. Re: is ther any good free webhodt sites with cpanel 11 and cron jobs 150 MB Space 3GB Bandwith :| Not for a big game, or even normall :/
  5. Re: HELLLLLLLLLLLLLLLLLLLLLPPPPPPPPPPP!!!!!!!!!!!!!!!!!!!!!!!!!!!!11 Try this link: http://www.reg.ca/faq/PhpMyAdminTutorial.html
  6. Re: If you do one thing today... Properly used a web shell and deleted it.  
  7. hamster01

    PHP Configuration?

    Re: PHP Configuration? find: error_reporting = ***** replace wiht: error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT   In php.ini
  8. Re: mysql injection Cross-Site-Scripting (CSS aka XSS), which also stands for Cascading Style Sheet or Content Scrambling System.
  9. Re: mysql injection Heard of XSS aka CSS?  
  10. Re: mysql injection Well, say you have an script that get an id trough a $_GET variable. ex: $get_id = $_GET['id']; and then the url: script.php?id=1 You will properbly have a query like: $get_id = $_GET['id']; $query = mysql_query("SELECT * FROM table WHERE id='$get_id'",$connection);   Then someone goes an exploit it: ?script.php?id=1' UNION SELECT userpass FROM users WHERE userid=1 --   Now the query is: $get_id = $_GET['id']; $query = mysql_query("SELECT * FROM table WHERE id='1' UNION SELECT userpass FROM users WHERE userid=1",$connection);   Then that displays the uerpass that someone can crack. Now for protection. Modifiy the script a little: $get_id = addslashes($_GET['id']); $get_id = htmlspeacialchars($get_id); $query = mysql_query("SELECT * FROM table WHERE id='1 UNION SELECT userpass FROM users WHERE userid=1 --'",$connection);   now that query is going to fail, because there is no such userid as: 1 UNION SELECT userpass FROM users WHERE userid=1 --   But my best advice is not to use $_GET at all.
  11. Re: Guess the next poster Nooooo(pe)! A llama is going to post next d:
  12. Re: EXP level goes past 100% and breaks design If you attack someone much higher level than you this also happens.
  13. Re: is ther any good free webhodt sites with cpanel 11 and cron jobs No, but thats the most annoying thing for me.
  14. Re: EXP level goes past 100% and breaks design Sorry, while you posted i updated my post. but the variable expneeded, can also be more than 100.
  15. Re: EXP level goes past 100% and breaks design won't the '%' give an error in php? Well, try this: $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $exopp=100-$experc; if ($experc > 100){ $var['exp'] = ($experc/100); list($exp,$the_rest) = burst('.',$var['exp']); echo '[img=bar.gif]X' . $exp; It works in theory. It will output: |__________|X5 Please correct me if i'm wrong.
  16. Re: PLEASE TELL ME IF THIS SERVER WILL................... If php.net had a better search engine I would use that all the time. d:
  17. Re: is ther any good free webhodt sites with cpanel 11 and cron jobs I only use SSH on putty. But its annoying. It takes 6 times longer to type: cat file.php That just to click edit in cpanel.  
  18. Re: is ther any good free webhodt sites with cpanel 11 and cron jobs You mean SSH?
  19. Re: is ther any good free webhodt sites with cpanel 11 and cron jobs Yea, I've seen it somewhere before though. Someones website :| The styles hasn't changed much. I heard that the security has been changed allot.
  20. Re: PLEASE TELL ME IF THIS SERVER WILL................... I'm not going to tell someone I wan ta website fully coded with sql support. They may give my mssql database system. And you still have to google it don;t you ;) nvm, I was just saying.  
  21. Re: Illegal codes been sold OKay.. This guy obviosly cannot code either. I think they are just little bogs(maybe girls) who has made their very first website :wow:
  22. Re: PLEASE TELL ME IF THIS SERVER WILL................... GoldenZero, there are more than 1 sql's. You need, MySQL 4+  
  23. Re: The WeIrDeSt Error you have seen. It a website. http://www.albinoblacksheep.com/ They keep my fav song..
  24. Re: Illegal codes been sold I'll find out for you cronus. [email protected]
  25. I just stumbled onto an error and thought I should make a topic. What was the weirdest application, web, any error you have ever seen?
×
×
  • Create New...