Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Assuming you have the two emails addresses you want to send to in the variables $Email and $EmailTo. To simply send the email to both of these addresses, just separate them by a comma as indicated in plain English in the manual page I linked to and the particular section I actually copied and quoted for you. $success = mail("$Email,$EmailTo", $Subject, $Body, "From: <$EmailFrom>");
  2. Tutorials? css, html, js and php ought to cover it. Once you know those you wont need specific tutorials.
  3. I asked: This is the description given for the first argument `to`. Still stuck?
  4. What does that have to do with the first argument?
  5. Have you looked at the first argument in the manual? http://php.net/mail
  6. https://github.com/smalot/pdfparser
  7. Nothing? So the request is not being made? Have you looked in the network tab? The request / response? What does the response look like? print_r() really? Do you not have a php debugger?
  8. What does dev tools console have to say about your request?
  9. Your code is severely out of date, relying on register globals being switched on, it has been off by default (for security reasons) for a long time (probably 8+ years). You will now need to use `$_POST['navn]` instead of plain old `$navn` in your code.
  10. It doesn't. I also removed the .. in front of each file just for safe keeping and it seems to be working. That indeed would have been the cause of your issue.
  11. Does... <link type="text/css" rel="css/stylesheet" href="../css/reset.css"> <link type="text/css" rel="css/stylesheet" href="../css/metallic.css"> <link type="text/css" rel="css/stylesheet" href="../css/style.css"> <link type="text/css" rel="css/stylesheet" href="../css/shCoreDefault.css"> Appear in your source ?
  12. https://github.com/ircmaxell/password_compat
  13. Must have missed this: http://forums.phpfreaks.com/topic/195880-this-board-is-not-a-script-repository ?
  14. https://packagist.org - Packagist is the main Composer repository. It aggregates all sorts of PHP packages that are installable with Composer.
  15. trq

    Need Tips/Advice

    Just be aware its not something your going to learn over night. It's a programming language. In fact, I would forget whatever project plans you have for the moment, and just spend a few months at least getting your head around the basics. http://www.phptherightway.com
  16. trq

    Need Tips/Advice

    Do you know php? That would be a good place to start.
  17. Seriously, there must be already hundreds of tutorials on this subject. Do you want use to write another one just for you? How about, you try an existing one and come and ask a specific question when/if you get stuck.
  18. I think your missing the point of a "Help" forum. We are not here to write code for people.
  19. That makes little sense. Again, what does the $row array look like? Hint, use var_dump.
  20. Because finally will always be called no matter what error is thrown, while your catch is only catching an error of type "error".
  21. trq

    HipHop VM

    For starters, there are still failing tests with my framework of choice (Symfony2). I know things are improving, but I'm not running failing code in production.
×
×
  • 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.