Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. jQuery is a client side (Javascript) library, nothing at all to do with PHP. The GD extension is generally available for manipulating images in PHP.
  2. Your logic is backward. Your saying if the record exists that it doesn't and vice versa.
  3. An example of the logic involved in executing a select query. $sql = "SELECT fld FROM tbl"; if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { // it is safe to use $result. } else { // no records returned } } else { // query failed, handle error. }
  4. Are you sure your query is even working? You haven't bothered to check.
  5. See http://au2.php.net/manual/en/language.oop5.properties.php
  6. Why would you need multiple cron jobs? Just create 1 cron job that executes daily checking for members birthdays.
  7. See http://www.phpfreaks.com/forums/index.php?topic=37442.0
  8. Two things. We need to see the actual problematic code. Secondly, you need to take a look at what __autoload() is actually designed for.
  9. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=328006.0
  10. Nope, see http://www.phpfreaks.com/forums/index.php?topic=291859.0.
  11. Ha! I think you might be. In all seriousness, we can't really split the boards into a different category for each and every framework. jQuery is Javascript, Ajax on the other hand is a completely different kettle of fish.
  12. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=327940.0
  13. I looked at the link, but it would help to talk about my specific problem. Thanks, Debbie There is a reply (by me) in that specific thread that describes the basic of dynamic web sites. If you don't understand something, tell us, your not going to get a tutorial written especially for you.
  14. Um, good practices are just that, good practices. If you want to be able to reliably change parts of your application without interfering with or breaking other parts then encapsulation is key. Only the simplest of programs will scale without it.
  15. That means that only itt_214 can access the directory. At the very least, you'll want to allow the www-data group access. chown :www-data myfiles ; chmod g+rx myfiles From there you'll want to look into Linux permissions, your issue is nothing to do with Apache.
  16. Not necessarily. What are the current permissions?
  17. Has the Apache user (www-data by default on Debian) got permission to access said directory?
  18. This topic has been moved to Other. http://www.phpfreaks.com/forums/index.php?topic=327935.0
  19. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=327921.0
  20. See here: http://www.phpfreaks.com/forums/index.php?topic=107835.0
  21. I'm sorry but as a web page I wouldn't rate it at all. It kinda reminds me of a pinball machine I used to play in the early eighties.
  22. A read of this thread should get you started.
  23. This is a help forum, not a code repository. If your not interested in learning, you'll need to hire someone who knows what they are doing.
×
×
  • 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.