My web site is www.new-generic-******.com ID#15576..I have read most of the forums relating to this problem, however I know am doing some thing simple wrong..I have followed the tutorials to the T...Tried using advice to others and am still stuck.
It just does not work..Form properties is correct...yes I installed action.php. Placed all into one large form area.including submit button.
I am not using Outlook Express for my email. Does that cause a problem?
<?PHP
$mailto = "mdventures@netzero.com";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto
}
$mailsubj = "Comments";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Thank you for contacting us.Will reply soon :\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
Somebody check the above please this is getting too long..Thanks Dave
It just does not work..Form properties is correct...yes I installed action.php. Placed all into one large form area.including submit button.
I am not using Outlook Express for my email. Does that cause a problem?
<?PHP
$mailto = "mdventures@netzero.com";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto
}
$mailsubj = "Comments";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Thank you for contacting us.Will reply soon :\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
Somebody check the above please this is getting too long..Thanks Dave
Comment