赞
踩
feedback.html
Feedback FormName:
Email:
feedback.php<?php
$username = $_POST['username'];
$useraddr = $_POST['useraddr'];
$comments = $_POST['comments'];
$to = "php@h.com";
$re = "Website Feedback";
$msg = $comments;
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $useraddr \r\n";
$headers .= "Cc: another@hotmail.com \r\n";
mail( $to, $re, $msg, $headers );
?>
Message ReceivedMessage received from <?php echo($username); ?>
Reply to <?php echo($useraddr); ?>
相关标签:php
本文原创发布php中文网,转载请注明出处,感谢您的尊重!
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。