Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=334003.0
  2. trq

    PHP news

    This is a board for help with actual code, not help finding it.
  3. Backticks off absolutely no protection against SQL injection.
  4. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=334005.0
  5. They have nothing to do with speed but simply allow you to escape reserved words. They should be avoided IMO.
  6. This topic has been moved to Application Frameworks. http://www.phpfreaks.com/forums/index.php?topic=333896.0
  7. Funnily enough, it's covered in the manual. http://www.php.net/manual/en/internals2.php
  8. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=333807.0
  9. trq

    storing data

    Can you be a little less vague?
  10. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=333787.0
  11. You need to pass $results to mysql_fetch_assoc.
  12. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=333788.0
  13. And I am sure that works brilliantly for you.
  14. Do not patronize me, smart ass. I'm sure your know very little about what I am even referring to.
  15. JavaScript is nothing like PHP. Syntax wise, maybe a little, but that is about where the similarities end. It has a completely different inheritance model based on prototypes.
  16. To be quite honest, I'm not sure there is much 'under the hood' that is well designed about Wordpress or (because if this) any of it's plugins. While it works, it's not exactly well implemented.
  17. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=333755.0
  18. So, even though you have some code that you obviously don't understand you want to use it to do a specific task? Can you explain to me.... how exactly do you expect the code shown to secure anything?
  19. You should always check your queries for success before using any data they might return. if ($result = mysql_query("SELECT * FROM jobs WHERE jobType = 'abc'")) { $num = mysql_num_rows($result); echo "Found $num records"; } Note I also fixed your query which was missing quotes around the string 'abc'.
  20. Have you used any of the MVC frameworks that are around play_ ? It seems to me that you might not understand the concepts at that stage.
  21. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=333682.0
  22. This topic has been moved to Linux. http://www.phpfreaks.com/forums/index.php?topic=333614.0
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.