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 Apache HTTP Server. http://www.phpfreaks.com/forums/index.php?topic=349296.0
  2. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=349338.0
  3. trq

    kernel OS

    Probably not a completely accurate count considering the entire source tree might not necessarily be considered the "kernel" but your question is itself pretty vague anyway. thorpe@oblivion[/usr/src/linux-funtoo-openvz-2.6.32.042.039.10]$ find . -type f | wc -l 34687
  4. All request to Zend framework go through a single entry point. Your bootstrap. The views are pulled into your response internally. No one ever actually requests a view.
  5. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=349362.0
  6. Going off what you have said, the absolute path to your cron.php script would be /home/crikeyga/cron.php
  7. It is poor design to have duplicate data stored in your database.
  8. How should we know?
  9. I assumed that was obvious.
  10. Just format Logintime to return only the time. SELECT ID, Acct, DATE_FORMAT(Logintime, '%h:%i %p'), User FROM test_history
  11. I'm a massive vim fan so don't really have much of an opinion when it comes to IDE's.
  12. AS scootstah has pointed out a parents properties are available as if they are defined within the child class. parent::$this->whatever; Does make allot of sense. Maybe show us a simple example of what it is your referring to because really, to access a parents property is no different than accessing any other property. eg; $this->var;
  13. That's because MS sux balls.
  14. To auto send an email you would need to execute a script daily, hourly or whatever (this would need to be scheduled via cron). That script would then query your database for all records where the "scheduled appointment date" is two days from the time the script executes. You would then send the email to all the email addresses returned by this query.
  15. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=349156.0
  16. Your getCart method should be within your cart Model.
  17. And your code?
  18. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=349116.0
  19. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=349113.0
  20. Cron has nothing to do with php. Unless you have shell access to your server, it is likely that your host provides some form of interface to cron (or you might not be able to use cron at all).
  21. trq

    MultiTouch

    This has what to do with php?
  22. trq

    iTunes

    There is no API as far as I am aware.
  23. trq

    php cli help

    You could split the input from STDIN by spaces and parse that as arguments.
  24. trq

    php cli help

    I would prompt the user for what function they want to use, then prompt them again for the arguments needed.
  25. Check that $_POST['TestGroup'] isset before using it.
×
×
  • 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.