Search results

  1. I

    email of order form

    Thank you, that now sends an email to the address at the top, but for some reason none of the variables are being sent. Why wouldnt it send the form information? Do I have to define them or something? at the moment those variables are simply the dollar sign followed by the name I gave the it in...
  2. I

    email of order form

    It doesnt seem to be working, still get the 'mail() is dissabled' message. Heres the code: <? $mailto = "order@titan-tech.co.uk"; $subject = "Titan-Tech Order Form"; $body = "The following confirms the details of your order:\n"; $body .= "\n\n"; $body .= "Name: " . $Fname . "\n"; $body .=...
  3. I

    email of order form

    I just tried that, and apparently mail() is not enabled yet. I guess I need the next level of permissions...
  4. I

    email of order form

    Thank you for your reply. Do I need to use this form of mail, or should just: mail() work??
  5. I

    email of order form

    Hi everyone, I have upgraded my php to level 2, hoping that this would allow my php script for sending the results of an order form to work. It has not. But as I am very new to all web programming, and copied most of the code from an example, I wondered whether it was a problem with the code...
Top