well i misspelled it for a reason,
   it actually http://www.mcsmicro.net/pages/whoops.php
 
   yeah its there,
        here is a revised edition but still doesn't work

<?
// * my Emailer PHP Code *//

  $firstname = $_REQUEST['firstname'] ;
  $lastname = $_REQUEST['lastname'] ;
  $email = $_REQUEST['email'] ;
  $description = $_REQUEST['description'] ;
 
  // $todayis = date("l, F j, Y, g:i a") ;

   mail( "[EMAIL PROTECTED]", "Feedback Form Results",
 
    $description,"From: $email" );

 // header( "Location: http://www.mcsmicro.net/pages/thanks.php"; );
}
elseif (empty($email) || empty($description)) {

//Message to alert User that Form isn't Complete
header( "Location: http://www.mcsmicro.net/pages/whoops.php"; );

}
else {
 // Show on Contact form the after it is complete..
PRINT "<center><FONT SIZE=-1 face=verdana>"; PRINT "Greetings 
$firstname, thank you for filling out our";
PRINT "form.";
PRINT "</center><p><center><TABLE border=0 width=500";
PRINT "cellspacing=0 cellpadding=7>"; PRINT "<TR><TD><FONT SIZE=-1 
face=verdana>";
PRINT "Thank you for your input."; PRINT "We will send you more 
information about our site";
PRINT "in an email to $email.";
PRINT "If you have any more comments, feel free to Send another Contact.";
PRINT "</FONT></TD></TR></TABLE></center>";
?>

Reply via email to