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 Other Libraries and Frameworks. http://forums.phpfreaks.com/index.php?topic=365035.0
  2. This topic has been moved to Third Party PHP Scripts. http://forums.phpfreaks.com/index.php?topic=364987.0
  3. This topic has been moved to PHP Coding Help. http://forums.phpfreaks.com/index.php?topic=364977.0
  4. This topic has been moved to Application Design. http://forums.phpfreaks.com/index.php?topic=364976.0
  5. This topic has been moved to JavaScript Help. http://forums.phpfreaks.com/index.php?topic=364978.0
  6. trq

    bbcode help

    Your question makes little sense.
  7. Variables are not interpolated within single quotes. $pathtofile = ($_SERVER['DOCUMENT_ROOT'] . '/cms/images/airlines/$icao.jpg'); Should be: $pathtofile = $_SERVER['DOCUMENT_ROOT'] . "/cms/images/airlines/$icao.jpg";
  8. Some of my favs are: @rdohms, @rasmus, @fabpot, @davidwalshblog, @TheChangelog, @snookca, @github, @weierophinney, @rem, @nvie and @jeresig You can follow me at @tonyrq
  9. trq

    * Why Symfony

    Awesome. Looking forward to them.
  10. I just follow the right people on Twitter.
  11. trq

    * Why Symfony

    Do you really have to attach some unrelated image to each of your posts?
  12. You forgot to tell us the error. If it's a simple syntax error, it should be simple enough to fix yourself.
  13. That's so yesterday's news: http://forums.phpfreaks.com/index.php?topic=364868.0
  14. Awesome. We might need a little more information than you have provided.
  15. There is no such ini directive as username & password. I'm not sure where darkfreaks got the idea, but it is wrong. PHP's mail function does not support authentication. If your using an external mail server or your mail server requires authentication to be accessed, you will be best off using a third party library like PHPMailer or SwiftMailer of similar.
  16. Unless you have a domain resolving to your local network you don't have one. you would need to send the mail from that server.
  17. Do you have a proper domain setup to send mail from? Hotmail will likely see mail coming from anything but a proper domain as spam.
  18. This topic has been moved to PHP Applications. http://forums.phpfreaks.com/index.php?topic=364889.0
  19. As I said, you need to look into Ajax.
×
×
  • 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.