Jump to content
MakeWebGames

SRB

Members
  • Posts

    785
  • Joined

  • Last visited

  • Days Won

    79

Everything posted by SRB

  1. Glad to be of assistance :)
  2. First rule of debugging; echo out your results to compare with expected.   For this, use this within the post and post the outcome;   echo '<pre style="text-align: left;">'; print_r($_POST); echo '</pre>';   With that said, I always find it easier to have a function to do the above, which makes it quick to dump an array out for viewing, like this;   function pr_arr($array) { echo '<pre style="text-align: right; border: solid 1px red; background: white; color: black;">'; print_r($array); echo '</pre>'; exit; }   With that function, you simply go;   pr_arr($_POST);   Anyway, sort that out and post results, then we'll move on with bug finding techniques :)
  3. Yes, I posted that one first and it does state mt_ is indeed faster, just not the 4x claim. Regardless, the miliseconds involved are irrelevant in PHP as it's not that fast regardless, and the difference is negligible in real world usage. The fact remains that it is a better random function though. Here too.
  4. Yeah, I totally know what you mean about rand() being the best options without far more code. If only there was something faster and more random available without re-writing the interwebz!
  5. PayPal IPN is what you're needing to look through and edit.
  6. Tried on iphone - blocks can't be moved. May be worth adding navigation arrows for mobile users
  7. Wow, that mark up is bad, really bad. Absolute positioned elements within the head tags? Back to web design 101 for you, son. ----- Edit; on further examination, it seems you're declaring the html doctype twice, with head and body being called twice too. Should only be one instance of the html mark up within a page -- may want to fix that. With breaking the standards to that extent, you should expect some strange results with different browsers and whatnot.
  8. SRB

    hey guys

    Foundation by zurb isn't so bad either. That said, you know what you will need or not need from the packages, so take a look at the list below which is a list of 8 alternatives to bootstrap - one may fit your needs better than the rest. http://modernweb.com/2014/02/17/8-bootstrap-alternatives/ Make the library work around your plans, not your plans around the library!
  9. Work: underscore. Personal: camelCase Freelance: adopt what's already in use
  10. Just add cookies and milk and I'm good.
  11. So joinable organised comes that's moved outside of gangs?
  12. Budget? Inbox me.
  13. You should be hitting up brainchild with that kind of money. That or use a dedicated art medium such as deviantart.com
  14. Are we talking; A. What it would sell for, per sale, for mass sales? B. What it would cost custom made as a one off?
  15. May want to stop the text output before the session start too
  16. Ironically, camel fails, but it isn't a dog... Yeah, that sucks.
  17. Indeed it it. Clearly the ternary is wrong : false ; To : 0 ; Or similar
  18. Furthermore, I'm guessing that means he's trying to add crimes before crime groups, since that's what it fails on
  19. Wrong point Kyle. Look between the 13 and 0 - MySQL won't ever accept that empty field. Encase that one with quotes and it'll be solved
  20.   include_once('globals_nonauth.php');   If you don't have that file, it looks like you need a database connection file writing and added in. Luckily, you should have it.
  21. When the competition is the likes of DigitalOcean, I wish you well.
  22. A) Position: fixed; B) jquery to insert the div above <\body> - last fixed element will be on top.
  23. SRB

    Throne Mod

    Unsure what a throne mod is, inbox me details.
  24. http://hehrpg.com/ May want to fix those
  25. I don't believe I have ever had to create an account anywhere that I have been asked to test things (Like your original post) Guess I'll be staying clear of this one then.
×
×
  • Create New...