So I attempted at building a form in dreamweaver...
http://www.albertajdcwest.com/Contact.html based on your tutorial and your php document.
Here is the code I have for the Contact page: Code:
<form id="Contact" name="Contact" method="post" action="FormToEmail.php">
<p><input name="You Name Here" type="text" class="l21" id="You Name Here" onclick="MM_setTextOfTextfield('You Name Here','','')" value="Your Name" size="25px" maxlength="50" /></p>
<p><input name="You Email Here" type="text" class="l21" id="You Email Here" onclick="MM_setTextOfTextfield('You Email Here','','')" value="Your Email" size="25px" maxlength="50" /></p>
<p><textarea name="Your Comments" cols="50px" rows="6" class="l21" id="Your Comments" onclick="MM_setTextOfTextfield('Your Comments','','')">Your Comments, Concerns or Requests!</textarea></p>
<p>
<input name="Sumbit" type="submit" class="l21" id="Sumbit" value="Submit to JDC" />
</p>
</form>
And here is the code from the php page ( I didnt edit anything but the email -- as suggested) Code:
<?php
$my_email = "geoff@thinkwerx.com";
/*
Enter the continue link to offer the user after the form is sent. If you do not change this, your visitor will be given a continue link to your homepage.
If you do change it, remove the "/" symbol below and replace with the name of the page to link to, eg: "mypage.htm" or "http://www.elsewhere.com/page.htm"
*/
$continue = "/";
/*
Step 3:
Save this file (FormToEmail.php) and upload it together with your webpage containing the form to your webspace. IMPORTANT - The file name is case sensitive! You must save it exactly as it is named above! Do not put this script in your cgi-bin directory (folder) it may not work from there.
THAT'S IT, FINISHED!
You do not need to make any changes below this line.
*/
However, once published, I tried using the form and no emails come to my specified email:
geoff@thinkwerx.comCan you please try and help diagnose my problem?
Thank you for your help anyone...