|
|
|
อยากทำ contact us + โค้ดให้คนโหวต ครับ ใครช่วยบอกโค้ด Html ที่ไว้ทำ contact us ไว้ให้คนติดต่อกลับ |
|
|
|
|
|
|
|
มันก็แค่ ฟอร์มธรรมดานิครับ
ระบบ contact us ในความคิดผมมีสองแบบ คื
1. ส่งอีเมล์ มาหาเจ้าของระบบ
2. เก็บข้อมูลลง database
โค้ดให้คนโหวต -> แล้วจะโหวตอะไรละครับ
ถ้าโหวตให้คะแนนก็ไม่ยาก แค่ทำ link แล้ว update point ใน database อะครับ
ไม่รู้ว่าเข้าใจถูหรือเปล่า งงกับคำถามเหมือนกันครับ
|
|
|
|
|
Date :
2009-09-18 19:16:44 |
By :
DownsTream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำตอบครับ
contact us
1. ส่งอีเมล์ มาหาเจ้าของระบบ
ระบบโหวต
คือผมเว็บสำเร็จรูปอะครับ
ทำไม่เป็น
|
|
|
|
|
Date :
2009-09-18 21:04:08 |
By :
max25265zaq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ระบบ contact us ก็เหมือนกับการ send mail อ่ะค่ะแค่ดัดแปลงนิดหน่อย
ลองดูนะค่ะ ไม่รุว่าต้องการแบบนี่รึป่าว
หน้า mail.php
Code (PHP)
<form id="form1" name="form1" method="post" action="send_mail.php">
<table width="790" border="0" cellspacing="1" cellpadding="1">
<!--DWLayoutTable-->
<tr>
<td height="24" colspan="2"> </td>
<td width="50"> </td>
<td width="163"> </td>
<td width="192"> </td>
<td width="108"></td>
<td width="98"></td>
</tr>
<tr>
<td width="45" height="24"> </td>
<td colspan="2" valign="top">จาก</td>
<td valign="top"><label>
<input name="name" type="text" id="name" value="" size="27"/>
</label></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td height="24"> </td>
<td colspan="2" valign="top">ถึง</td>
<td colspan="3" valign="top"><label>
<input name="sender" type="text" id="sender" size="75" />
</label></td>
<td> </td>
</tr>
<tr>
<td height="24"> </td>
<td colspan="2" valign="top">ชื่อเรื่อง</td>
<td colspan="3" valign="top"><label>
<input name="header" type="text" id="header" size="75" />
</label></td>
<td> </td>
</tr>
<tr>
<td height="85"> </td>
<td colspan="2" valign="top">ข้อความ</td>
<td colspan="3" valign="top"><label>
<textarea name="messages" cols="75" rows="5" wrap="virtual" id="messages"></textarea>
</label></td>
<td> </td>
</tr>
<tr>
<td height="26"> </td>
<td width="118"> </td>
<td colspan="3" valign="top"><div align="center">
<label>
<input type="submit" name="Submit" value="send mail" />
</label>
</div></td>
<td> </td>
<td></td>
</tr>
</table>
</form>
หน้า sendmail.php
Code (PHP)
<?php
$emailto='[email protected]'; //อีเมล์ผู้รับ
$subject='$header'; //หัวข้อ
$header.= "Content-type: text/html; charset=windows-874\n";
$header.="from: ".$name."E-mail :".$mail; //ชื่อและอีเมลผู้ส่ง
$messages.= "<b>$text</br>"; //ข้อความ
$messages.= "จาก $sender<br>";//ข้อความ
mail($emailto,$subject,$messages,$header);
if(!$send_mail)
{
echo"ยังไม่สามารถส่งเมลล์ได้ในขณะนี้";
}
else
{
echo "ส่งเมลล์สำเร็จ";
}
?>
ลองดูนะค่ะ
|
|
|
|
|
Date :
2009-09-29 16:03:17 |
By :
sangkheb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\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."; } ?>
ผมทำแล้วแต่ Error ตามนี้อะครับไม่รู้ว่าเป็นอะไร
|
|
|
|
|
Date :
2011-07-11 18:37:09 |
By :
chan88221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|