Jump to content

rhapsody

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by rhapsody

  1. Google Analytics provides useful tricks for mail tracking as far as I know...https://plus.google.com/+DanielWaisberg/posts/XDrRoh3GoVP
  2. rhapsody

    Php contact form

    hey!I want to add "required fields" and "valid mail address" alert to my php code,my code is;<?php$field_name = $_POST['cf_name'];$field_email = $_POST['cf_email'];$field_message = $_POST['cf_message'];$mail_to = '_';$subject = 'Message from a site visitor '.$field_name;$body_message = 'From: '.$field_name."\n";$body_message .= 'E-mail: '.$field_email."\n";$body_message .= 'Message: '.$field_message;$headers = 'From: '.$field_email."\r\n";$headers .= 'Reply-To: '.$field_email."\r\n";$mail_status = mail($mail_to, $subject, $body_message, $headers);if ($mail_status) { ?><script language="javascript" type="text/javascript">alert('Your message has been sent. We will contact you shortly.');window.location = 'contact1.html';</script><?php}else { ?><script language="javascript" type="text/javascript">alert('Your message could not be delivered. You can contact us at(_)');window.location = 'contact1.html';</script><?php}?>any help will be appreciated...
×
×
  • Create New...