Jump to content
MakeWebGames

Decepti0n

Members
  • Posts

    731
  • Joined

  • Last visited

    Never

Everything posted by Decepti0n

  1. Re: [mccode] Owner Panel - Simple You're re-writing cpanel functions? :s or am i confused
  2. Decepti0n

    Happy Birthday

    Re: Happy Birthday happy burfdeeee!
  3. Re: Best Sites To Advertise On Yes, since im the only one who says it Unique visitors is the only stat you can correlate with income, one person visiting 100 pages doesn't mean anything, and I can see how long people have been on the site, where they've been, where they come from, what they had for breakfast and more with my stats tracker
  4. Re: Best Sites To Advertise On Unique visitors is the only important stat
  5. Re: How to hack windows pinball, and any other games (with pics) eh, minesweepers easy anyway :p
  6. Re: Credit Gym It isn't just TC's way of doing it, it's anyone who's smart enough to figure out how to reduce sql server load and reduce queries, and stress on the sql server. It's 1000x more efficient to construct a query in a loop, then once it's ended, run the query, instead of hundreds of smaller ones. Just as an example, for ($x = 0; $x <= 1000; $x++) { mysql_query("UPDATE table SET field = field + 1"); }   is horrible compared to: $gain = 0; for ($x = 0; $x <= 1000; $x++) { $gain++; } mysql_query("UPDATE table SET field = field + $gain");
  7. Re: Credit Gym Holy shit, you have one query per train? And you wonder why you're all getting kicked off hosting for using up too much resources? What if someone has like 100 energy, that'd make it 100 queries per train...yeeeeeeesh Someone needs to teach optimization here
  8. Re: time code That won't do anything :s You'll end up with if Resource id #6 < Resource id #6 + 3500
  9. Re: Session Logging Time Use time() since you're dealing with php in this case :\
  10. Re: Developing locally on your own local PHP/MySQL/Apache server I use PMA on Windows :(
  11. Re: SQL Injections if its normally: SELECT * FROM players WHERE name = '$name' AND pass = MD5('$pass') you could add as the password (if not properly protected) a') OR MD5('a') = MD5('a then again, some dont encrypt at all, and sql injection isn't just for logging in, it can be used in almost any input box, and i doubt you hash every record in every row in every table :p
  12. Re: What do you think this is XD Some variables
  13. Re: Session Logging Time Nice idea, might use it for statistics logging
  14. Re: SQL Injections it becomes SELECT * FROM users WHERE name = 'jack' AND pass = 'anything' OR 'x' = 'x'
  15. Re: SQL Injections Yeah, I really should make more permission-specific accounts for mysql
  16. Re: New virus going trough MSN how does it save itself to your computer if you have to accept it? unless you have auto-accept downloads
  17. Re: Fav band, music Breaking Benjamin, lostprophets, Linkin Park
  18. Re: ill try it It will be hard if you don't know what functions it uses, and how it uses them :p
  19. Re: Fav command Using it at all is un-pro :\
  20. Re: Fav command yarrrrrrrrrrrrrrr marquee is gr8
  21. Re: [mccode] Register Page Want me to show you how it won't stop multis? :P
  22. Re: [mccode] Register Page How do you know it stops multis? :P
  23. Re: stats cap Its 2.1 billion or so
  24. Re: Adding items such as "Will Potion" VALUES('',1,'Will Potion','Some sweets for the donators',,,1, You can't have 3 commas in a row :(
  25. Re: Register Page that stops multies lo0ol i remember when someone jailed (i think it was Quacks) all of some country (think it was Vietnam or Singapore)
×
×
  • Create New...