Jump to content

imagfinder

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

imagfinder's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. This may not be able to be done in just HTML or PHP, if not please point me in the right direction. I need to make a simple login on a website. It will allow some clients to view some special pages. The ideal way is to be able to login at any time on any page, and of-course those that don't login won't be able to see the pages that would be protected. Thanks.
  2. This may not be able to be done in just HTML, if not please point me in the right direction. I need to make a simple login on a website. It will allow some clients to view some special pages. The ideal way is to be able to login at any time on any page, and of-course those that don't login won't be able to see the pages that would be protected. Thanks.
  3. I just want to add our logo in our email so that it is not an attachment. For Outlook, Mail, Thunderbird, etc. I know that you can add in scripts to put the info from another location.
  4. I dont know how to use the php email function. I am not that familiar with PHP.
  5. Can someone tell me how to embed your company logo in your email with html or php? I don't know if I am even asking the question right. Any help is appreciated.
  6. I am not that familiar with PHP. I am trying to learn but dont know many people or places to go for help so maybe I have found the right place. I have an html form and when you click send it goes to a PHP page that sends an email with the answers to the form (that is what my client as for). The problem is that the answers run together. I dont know what the to use to make each answer go to a new line. Here is what I have: <?php $from='From: Surveryer' . $_POST["Survey Answers"]; $body=$_POST["1st_Q"] . $_POST["2nd_Q1"] . $_POST["2nd_Q2"] . $_POST["3rd_Q1"] . $_POST["3rd_Q2"] . $_POST["3rd_Q3"] . $_POST["3rd_Q4"] . $_POST["3rd_Q5"] . $_POST["3rd_Q6"] . $_POST["4th_Q"] . $_POST["5th_Q"] . $_POST["6th_Q"] . $_POST["6th_Q2"] . $_POST["7th_Q"] . $_POST["Email"]; $to="Client@mailaddress.com"; $subject="Client Survey"; if (mail($to,$subject,$body,$from)) { ?> Any help is greatly appreciated.
×
×
  • 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.