明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

用PHP制作的意見反饋表

[摘要]這是一個用PHP制作的意見反饋表,稍加修改也可用于網(wǎng)上發(fā)信程序,主要是讓訪問者填寫表單,用PHP處理后發(fā)送到管理員信箱,并向訪問者信箱發(fā)送一個證實信件。 about.php ------------...
這是一個用PHP制作的意見反饋表,稍加修改也可用于網(wǎng)上發(fā)信程序,主要是讓訪問者填寫表單,用PHP處理后發(fā)送到管理員信箱,并向訪問者信箱發(fā)送一個證實信件。

about.php
-------------------------
<html>
<head>
<title>意見反饋表</title>
</head>
<body>
<?php

$adminmail="admin@acme.oso.com.cn"; #管理員信箱
$pagename="Acme"; #主頁名稱
$pageline="http://acme.oso.com.cn"; #主頁地址

#管理員信件內(nèi)容
if (($formno1!="") and ($formno4!="") and ($formno11!="")) {

$Email=$formno4; #來訪者E-mail
$sender=$formno1; #送信人
$nowtime=date("Y年m月d日H時i分");


$tmpfilename = tempnam("./tmp", "dm");
$fp = fopen($tmpfilename, "w");

fwrite($fp, "From: ".$Email."n");
fwrite($fp, "Subject: ".$sender." <".$pagename."-意見反饋表>nn");
fwrite($fp, "送信人:".$sender."n發(fā)信IP:".$REMOTE_ADDR."n發(fā)信時間:".$nowtime."nn");
fwrite($fp, "反饋表詳細(xì)內(nèi)容:n------------------------------------------------------n");
fwrite($fp, "姓名:".$formno1."n性別:".$formno2."n年齡:".$formno3."nE-mail:".$formno4."n工作單位:".$formno5."n聯(lián)系地址:".$formno6."n郵編:".$formno7."n電話:".$formno8."n傳真:".$formno9."n網(wǎng)址:".$formno10."n意見建議:".$formno11."n------------------------------------------------------n");
fclose($fp);

$execstr="cat ".$tmpfilename." /usr/sbin/sendmail ".$adminmail;
exec($execstr);

$execstr="echo $sender $nowtime $REMOTE_ADDR $REMOTE_HOST >> mail.log";
exec($execstr);

#來客信件內(nèi)容;
$tmpfilename1 = tempnam("./tmp", "dm");
$fp = fopen($tmpfilename1, "w");

fwrite($fp, "From: ".$adminmail."n");
fwrite($fp, "Subject: 你在[".$pagename."]填寫的<意見反饋表>nn");
fwrite($fp, "****此信為自動回復(fù)信件,請勿回復(fù)。給你帶來不便,我們深表歉意。****nn------------------------------------------------------n非常感謝你在[".$pagename."]填寫意見反饋表!n以下是您在".$nowtime."填寫的詳細(xì)內(nèi)容,請確認(rèn):n------------------------------------------------------n");
fwrite($fp, "姓名:".$formno1."n性別:".$formno2."n年齡:".$formno3."nE-mail:".$formno4."n工作單位:".$formno5."n聯(lián)系地址:".$formno6."n郵編:".$formno7."n電話:".$formno8."n傳真:".$formno9."n網(wǎng)址:".$formno10."n意見建議:".$formno11."n------------------------------------------------------n".$pagename.":".$pageline."nE-mail:".$adminmail);
fclose($fp);

$execstr="cat ".$tmpfilename1." /usr/sbin/sendmail ".$Email;
exec($execstr);

#確認(rèn)頁開始;
echo "
<style type=text/css><STYLE>
A {FONT-SIZE: 9pt}
A:link {COLOR: #006666; }
A:visited {COLOR: #006666;}
A:hover {COLOR: #ff0000; TEXT-DECORATION: underline}
TD {FONT-SIZE: 9pt}
INPUT {FONT-SIZE: 9pt}
</style>
<br><p align=center><font size=4><b>*** 非常感謝你在<a href=$pageline>$pagename</a>填寫意見反饋表! ***</b></font></p>以下是您填寫的詳細(xì)內(nèi)容:<hr><br>
<b>姓名:</b>  $formno1<br>
<b>性別:</b>  $formno2<br>
<b>年齡:</b>  $formno3<br>
<b>E-mail:</b> $formno4<br>
<b>工作單位:</b>$formno5<br>
<b>聯(lián)系地址:</b>$formno6<br>
<b>郵編:</b>  $formno7<br>
<b>電話:</b>  $formno8<br>
<b>傳真:</b>  $formno9<br>
<b>網(wǎng)址:</b>  $formno10<br>
<b>意見建議:</b>$formno11<br><br>
<font color=#993333>謝謝您。!</font>
<hr><input TYPE=button VALUE=返回上一頁 OnClick=history.go(-1);return true;> 
<p align=center><font size=3>$pagename</font>:<a href=$pageline>$pageline</a></p></font><p>
";
#確認(rèn)頁結(jié)束;

} else {
?>
<script language=javascript>
function save(){
if(f1.formno1.value!="" && f1.formno2.value!="" && f1.formno3.value!="" && f1.formno4.value!="" && f1.formno11.value!=""){
f1.submit();
}
else{
alert("帶*為必填項,請全部填寫后再次提交。nn 謝謝合作!");
}
}
</script>
<p align="center"><font size="5" color="#009999">意 見 反 饋 表</font></p><br>
<table width="90%" border="0" align="center" cellspacing="1" cellpadding="5" bgcolor="#F2F2F2">
<tr>
<td>
<form action=<? echo($GLOBALS["PHP_SELF"]); ?> method=post name=f1>
<table width="100%" border="0">
<tr>
<td width="32%"> <font size="3">您的姓名:</font> <font size="3">
<font color="#CC0000"> </font></font></td>
<td width="68%"> <font size="3">
<input type="text" name="formno1" size="8">
<font color="#CC0000"> *</font></font></td>
</tr>
<tr>
<td width="32%"> <font size="3">您的性別:</font></td>
<td width="68%"><font size="3">
<select name="formno2">
<option value="男">男</option>
<option value="女">女</option>
</select>
<font color="#CC0000"> *</font></font></td>
</tr>
<tr>
<td width="32%"><font size="3">您的年齡:</font> </td>
<td width="68%"><font size="3">
<input type="text" name="formno3" size="3" maxlength="3">
<font color="#CC0000"> *</font></font></td>
</tr>
<tr>
<td width="32%"> <font size="3">您的E-mail:</font></td>
<td width="68%"><font size="3">
<input type="text" name="formno4" maxlength="40">
<font color="#CC0000"> *</font></font></td>
</tr>
<tr>
<td width="32%"> <font size="3">您的工作單位:</font></td>
<td width="68%"><font size="3">
<input type="text" name="formno5" maxlength="100">
</font></td>
</tr>
<tr>
<td width="32%"><font size="3">您的聯(lián)系地址:</font></td>
<td width="68%"><font size="3">
<input type="text" name="formno6" maxlength="100">
</font></td>
</tr>
<tr>
<td width="32%"><font size="3">您的郵政編碼:</font></td>
<td width="68%">
<input type="text" name="formno7" maxlength="10">
</td>
</tr>
<tr>
<td width="32%"><font size="3">您的電話:</font></td>
<td width="68%">
<input type="text" name="formno8" maxlength="20">
</td>
</tr>
<tr>
<td width="32%"><font size="3">您的傳真:</font></td>
<td width="68%">
<input type="text" name="formno9" maxlength="20">
</td>
</tr>
<tr>
<td width="32%"><font size="3">您的網(wǎng)址:</font></td>
<td width="68%">
<input type="text" name="formno10" maxlength="100">
</td>
</tr>
<tr>
<td width="32%" valign="top"><font size="3">意見或要求:</font></td>
<td width="68%">
<textarea name="formno11" cols="30" rows="5"></textarea>
<font color="#CC0000">*</font></td>
</tr>
<tr>
<td width="32%"> </td>
<td width="68%">
<input type=button value=" 發(fā)送 " onClick="javascript:save();" name="button">


<input type="reset" name="clear" value="清除">
</td>
</tr>
<tr>
<td colspan="2">
<p><br>
注:標(biāo) <font color="#CC0000">* </font>項目為必填項。</p>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<?
}
?>
</body>
</html>