Search results

  1. J

    HTML email via PHP appears to be working.....but it's not???

    Hi, Thanks for the responses. I have checked Spam folder and also tried sending to different email addresses. I have changed the variable names, just want to get it working before I set everything correctly. I have also sent non-HTML emails and they are working fine, which is what is...
  2. J

    HTML email via PHP appears to be working.....but it's not???

    Hi, I am attempting to send a HTML email via PHP using coding that i know works. It submits the contents of a form to a DB before emailing the results. Here is the coding... <?php $var1 = $_POST['var1']; $var2 = $_POST['var2']; $var3 =$_POST['var3']; $var4 = $_POST['var4']; $var5 =...
  3. J

    Not connecting to MySQL

    I am using code that I know works from previous pages I have developed, but for some reason the PHP won't connect to the DB and I am getting a "No database selected" error. My coding is: mysql_connect("localhost","user","password") or die ('Error: ' . mysql_error()); mysql_select_db...
Top