|
|
|
ส่งข้อความเป้นภาษาไทยในฟอร์มเมลล์แล้วเช็คปลายทางดันกลายเป็นภาษาขอมแก้ยังไงดีครับ |
|
|
|
|
|
|
|
ส่งข้อความเป้นภาษาไทยในฟอร์มเมลล์แล้วเช็คปลายทางดันกลายเป็นภาษาขอมแก้ยังไงดีครับ
ต้องแก้ตรงไหนครับลองหมดแล้ว
file.html
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<form action="phpSendMailContactForm.php" method="post" name="frmMain">
<table width="99%" height="217" border="0">
<tr>
<td><div align="right" class="style1">
<div align="left">To</div>
</div></td>
<td><input name="txtTo" type="text" id="txtTo" size="30"></td>
</tr>
<tr>
<td><div align="right" class="style1">
<div align="left">Subject</div>
</div></td>
<td><input name="txtSubject" type="text" id="txtSubject" size="30"></td>
</tr>
<tr>
<td><div align="right" class="style1">
<div align="left">Description</div>
</div></td>
<td><textarea name="txtDescription" cols="30" rows="4" id="txtDescription"></textarea></td>
</tr>
<tr>
<td><div align="right" class="style1">
<div align="left">Form Name</div>
</div></td>
<td><input name="txtFormName" type="text" size="30"></td>
</tr>
<tr>
<tr>
<td><div align="right" class="style1">
<div align="left">Form Email</div>
</div></td>
<td><input name="txtFormEmail" type="text" size="30"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Send">
<input name="Reset" type="reset" id="Reset" value="Reset" /></td>
</tr>
</table>
<br>
</form>
file.php
<html>
<head>
<title>BP.STEEL INDUSTIES CO.,LTD.</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" /><style type="text/css">
<!--
a {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
body,td,th {
font-family: Courier New, Courier, monospace;
}
-->
</style></head>
<body>
<div align="center">
<?
$strTo = $_POST["txtTo"];
$strSubject = $_POST["txtSubject"];
$strHeader = "Content-type: text/html; charset=windows-874\r\n"; // or UTF-8 //
$strHeader .= "From: ".$_POST["txtFormName"]."<".$_POST["txtFormEmail"].">\nReply-To: ".$_POST["txtFormEmail"]."";
$strMessage = nl2br($_POST["txtDescription"]);
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</div>
<div align="center"><a href ="contactus.html" target="_parent"><br>
กลับไปหน้าเดิม</a></div>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-11 17:01:11 |
By :
kidcreation |
View :
834 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง strHeader ลองส่ง 2 บรรทัดนี้ไปด้วยนะ
$strHeader= 'MIME-Version: 1.0' . "\r\n";
$strHeader.= 'Content-type: text/html; charset=windows-874' . "\r\n";
|
|
|
|
|
Date :
2010-06-11 17:41:25 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|