help in changing the output of php feedback form.i have the working php form...

  • Thread starter Thread starter hamayoun
  • Start date Start date
H

hamayoun

Guest
...but i want to change out put ? this is working sendmail.php scrept but i want to change the out put frmate.
<body>
<?php
$Name = $_POST['name'] ;
$email = $_POST['email'] ;
$message = $_POST['message'] ;

$message1="You have new feedback from".$email."<br /><br />".$message."";

mail( "[email protected]", "Feedback Form...", $message1, "From: $email" );
echo'Thanks You for your feedback...<a href="feedback.html" title="Back to Feedback form...">Back</a>'
?>
what changes i will do in this php scrept to get the folloing out put
Subject lok like: A new feedback from (senders name)
mesage aria loks like:
hi,
you have received a new message from (senders name) whoes email address is (senders email),
message is:
(message)
 
Back
Top