Jump to content

judda

Administrators
  • Posts

    354
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by judda

  1. Please Note: I didn't actually test it to verify that it works, but at first glance it looks like it should.
  2. You have to be careful with a query like that. You should be validating that it is more than just set otherwise you could potentially get yourself into SQL injection territories. Adding in an "intval" could help with that just to 100% make the string an integer before being placed in your code. I've adjusted your code block to also remove the "else" section, because you can easily define it above, and won't run into scoping issues. $page = 1; if (isset($_GET["page"]) && ($value = intval($_GET["page"]))) { $page = $value; } $start_from = ($page-1) * $perpage; The caveat with this code, is it isn't going to do a "0-based", so your pages must start at 1 which is what you are doing anyways with the page - 1 part.
  3. This looks absolutely amazing! Great work on it all!
  4. @Dracadia send me a PM I'm interested in this
  5. @DarthJawns a bunch of people on the forums do - why not just ask the question here?
  6. I know @LobstahMoney reached out to them a little while ago RE: an email issue, and a few times about possibly buying.
  7. @cutiechans43 that's ok any progress is good progress can you share the sample designs?
  8. It's been a while since anyone posted on here - how is everyone doing?
  9. @cutiechans43 - How is your site going?
  10. @Royal oh the bubble sort - it's great isn't it?
  11. @Boltgreywing The full team have been discussing that since it was originally posted.
  12. @Boltgreywing Digital is still around
  13. It's very BS because I know he was offered free hosting for a long time, so yeah I am not a fan. Especially when he comes back and gives no details. I personally have signed up to get my username, but that's about all.
  14. I doubt that the laptop was returned at all - but he would have had access to other stuff just maybe not backups which is why it's back to square one.
  15. @Dysania Sounds exciting Can't wait to see what comes of it!
  16. I think you figured this out now @Boltgreywing right?
  17. If you are using Laravel, then it comes out of the box. Otherwise, you essentially need to pass through a page number in the URL and then use a COUNT to see/calculate how many actual pages there are.
  18. Oh nice Sounds like a nifty little feature. Do you allow for multiple accounts? This could pose problems, or also lead to problems if people got the points from ill-gotten means (i.e. exploiting a bug in the site).
  19. Ugh - don't bother upgrading with them service is terrible and they try to charge you for absolutely everything even stuff they really shouldn't!
  20. I've sent a message to @LobstahMoney to see if they are still in contact with the people there.
  21. Given that lots of the world is in lock down of some variety due to COVID-19, I was able to get my family to play board games with me - so I figured I would ask if anyone else has picked it up as a hobby while in self-isolation? If yes, what games are you playing?
  22. @Vix is amazing to work with
  23. Man that library brings back some great memories I haven't touched it in years but yeah it's pretty good at wrapping the complexity (and still showing it) of prepared statements in PHP Does your install have the mysql library installed? What version of PHP are you using?
×
×
  • Create New...