Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,137
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Djkanna

  1. It's not illegal to auction off a house O_o
  2. In your queries that are using mres do something like; stripslashes(mysql_real_escape_string($_POST['var']))
  3. It's easy stuff and lots of good tutorials out there, use Google :P
  4. It's not annoying it's (like Aurora078 said) effective. However there is many ways you can check for a number; $_GET['var']+=0; if (isset ($_GET['var']) && filter_var ($_GET['var'], FILTER_VALIDATE_INT) ) $_GET['var'] = abs (filter_var ($_GET['var'], FILTER_SANITIZE_NUMBER_INT) ); else //FAIL Are just Two I use, I don't usually go for the whole: $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; as it's not my preference to do so. However it's all down to your preference, generally when it comes down to this there isn't a wrong and right way to do it.
  5. Like David said not considerable difference for the users of your game, however using one over the other may cut down your development time. EzRPG, good engine and starting block. The same for ZapEngine, however at this time I think EzRPG would be best to go with as it is more complete sort to speak than ZapEngine currently is.
  6. Not bad however nothing beats the RonR Vs PHP videos :O
  7. I noticed some mention of sprintf(), all I can say is use sprintf() wisely and it can provide some use to you. Aries, good luck with your learning. Oh and LOL!
  8. Yup, also Krak's clan.
  9. XP Tis' the reason I said it n00blet :O
  10. A (what I presume to be) Clan.
  11. ^What the n00blet said (: ^
  12. How do you know that, maybe he still browses the forum as a guest. Just because he doesn't own the place anymore doesn't mean he's not here. Krak buddy, if I see him I'll let him know, although I'd most likely see him in DDW in which you'd be there anyway :P
  13. Oh I know, I was using the most common as an example.
  14. Again take note of 'simple check' also take note of the last bit of advice, I'm well aware of using .htaccess to modify urls. However what people fail to realise is if you actually solve problems within your site that can be exploited via display pictures you've got nothing to worry about when it comes to the display pictures, some of the most used open source scripts don't bother with securing the image tags in bbcode as it doesn't pose an imediate threat towards the script itself, sure you can log someone out, that's not life threating it's just a pain.
  15. It's not that usefull as there is only one thing that checks that doesn't only apply to uploads. Simple check would be to check the extension: <?php if(!preg_match('#(https?://.*?\.(?:jpe?g|png|bmp))#si', $displayPicture)) : ?> [img=http://www.domain.tld/path/to/image] <?php else : ?> [img=<?php echo $displayPicture; ?>] <?php endif; ?> However if you check everything on input no reason to check anything on output. Doing uploads then using fread()/fopen() etc to check and serve the images would be another alternative.
  16. Damn your time costs money :O bagsy not talking to you anytime soon :P
  17. And we all know why you left in the first place :P
  18. Hmm... I cannot shed any light on it either much like Alain, I know sod all that's going on (they don't exactly keep the staff informed - exception to Jordan). I do understand what Dayo is getting at, they aren't as active as one would hope, but thats their choice. It doesn't really matter if their not active as the community tends to take care of itself, so there will always be a community here may not be devoted entirely to MCCodes but I would assume it will always be about some form of game engine/development. I do agree on one point in this topic, Mdshare did atleast make an effort with the forum. But Dabs and ColdBlooded have done also so... Other than that I cannot think of anything to say on this matter as it doesn't bother me either way.
  19. We all have our own ways of making ourselfs feel bigger than the rest, me personally I remember the way the people who now flame threads used to be on the other side of the flame. Danny quit flaming topics.
  20. Keep it friendly, Aries is correct and was polite about it no call for the insults.
  21. http://nbbc.sourceforge.net/#manual
  22. Please leave a reply in SlanderDesigns signatature mod I'm sure he can explain/fix whats wrong. Thanks Djkanna.
  23. table { text-align: center; } will center text within the table I think :/ XD table { width: 80%; margin: 0 auto; } Should center the table.
  24. Yeah you're right a few notices here and there but nothing major sort of speak. It's just in need of a little TLC :D
×
×
  • Create New...