Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. I believe login already has a connection to the database, and uses the class, so; /* * Count the amount of rows (userid) from users table where their last action is more than (or equal to) the current time minus 600 seconds) */ $get = $db->query("SELECT COUNT(`userid`) AS amount FROM `users` WHERE `last_action` >= (unix_timestamp()-600)"); $r = $db->fetch_row($get); echo '<strong>Users Online</strong> '. number_format($r['amount']);   (I don't have the database structure with me, now. I guessed last_action column name, you'd need to confirm that)
  2. Ahaha, gmoore, that is pretty funny!
  3. This is my preferred favorite out of the two (justgamingnews and geekygamerreviews)
  4. Perfection is the enemy of progress
  5. sniko

    Buy Credits

    Filter and sanitize inputs (_GET and _POST variables. Also these variables that are held in memory under different vars; for example $var = $_POST['var'];)
  6. Possibly set up an account so we can test it?
  7. Post up the code to where it decides this.
  8. sniko

    Happy new year

    What happens in May 2013? :p (I joke, of course) Happy new year, and all that doo-dar ;)
  9. It would also help if you could supply much more information, too!
  10. sniko

    Boo

    it sounds like a drunk Danny thing, though
  11. sniko

    Boo

    ...but...but you said more than 'Testicles'!
  12. Thanks for the information! Perhaps offer x sites a free service, in exchange of a review. This way, your company will retain some respect, and potential sales; as you'd have some testimonials.
  13. Any testimonials, or visual aides to support you? What's your turnaround and average price? I'm not flaming here, but using a tool a few negative points arise about http://www.reliableim.com The title contains stop words which are ignored by the most search engines. (Stop Words: you ,can ,on ,us) No description found. (Meta tag) * No keywords found. (Meta tag) * No robots meta tag. *   * This Meta tag doesn't offer any SEO advantage, but simply provides a brief description of a web page. It is important that the description clearly describes the purpose of the page, because it's not just for the search engines results snippets, but primarily for humans to read. * No keywords found and are not required. We still recommend the implementation of Common Tags instead. * If you want to prevent search engines from indexing a page, or you want to prevent the alternative description from the ODP/DMOZ or the Yahoo Directory from being displayed in the search results, the implementation of this tag is necessary. Your page displayed within search engines   ReliableIM | You can rely on us. reliableim | you can rely on us. http://reliableim.com/   A few more things.... You have 25 urls, 12 are unique.... 1 image alt tag, named "Professional logo"
  14. Most likely with error reporting enabled, or on a localhost, such as WAMP.
  15. check Dayos' archive, he may have it there.
  16. Looks very promising! Is the area pre-created, or randomly created? I'll explain a little more, say you move your character off-screen, is the map that is loaded next loaded from a collection of maps, and selected the specific map from you co-ordinates, or is it generated randomly?
  17. Here's it OO style, which I find easier with mysqli $data = $mysqli->query("SELECT [...]"); $info = $data->fetch_array(MYSQLI_ASSOC);   You'd have to slightly edit your config (connect to the database)
  18. Bug Url http://demo.rpgengine.eu/profile/view/'/ Tip Sanitize and filter _GET Notice: Trying to get property of non-object in /home/rpgengine/domains/rpgengine.eu/public_html/demo/profile.php on line 10
  19. sniko

    $1

    You got permission from Deadpool (Marvel Comics) to use their artwork?
  20. sniko

    $1

    > Devaluing your work, but still saying it has value is not the way to go
  21. Here is the link to Bootstrap
  22. sniko

    Merry Xmas

    if( date("d") == 25 && date("m") == 12 ) echo 'Christmas'; else echo 'Not Christmas';   Sorry, I'm being a humbug this christmas, being the fact I'm waitering to over 100 people on Christmas day, and no idea how many Christmas Eve or Boxing Day. Nevertheless; Happy Holidays, people!
  23. New database column in `items` Edit the staff items to show another form entry for the minimal level Edit the queries in staff items Do a binary-like check in equip item IF ( [weapon_minimum_level] > [my_level] ) DISPLAY "Can't equip. Level up!" END IF
  24. Just a hint;   A professional writer wouldn't capitalize every single word Also, good luck :)
  25. sniko

    Introduce

    Hey Scorpio! Welcome to MakeWebGames :)
×
×
  • Create New...