|
|
|
สอบถามเรืองเขียนโค้ด ส่ง Email หน้าเว็บหน่อยครับ กด submit แล้วมันส่งไม่ได้ไม่รู้เขียนผิดตรงไหน |
|
|
|
|
|
|
|
โค้ด form
Code (html)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<table border='0' cellspacing='0' cellpadding='0' class='FormCaptionBorderBg ContentCaption_header'>
<tr>
<td><b>แจ้งการชำระเงิน</b></td>
</tr>
</table>
<table border='0' cellspacing='0' cellpadding='0' class='FormBorder ContentCaption_detail'>
<tr>
<td>
<table border='0' cellspacing='5' cellpadding='0' class='ContentCaption_detail'>
<input type='hidden' name='lang' value='th'>
<tr>
<td class='FormTextLeft'>ชื่อ-สกุล :</td>
<td>
<input type='text' name='name' maxlength='200' size='40' value=""> <font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>อีเมลล์ :</td>
<td>
<input type='text' name='emailp' maxlength='200' size='40' value="" onKeypress="check_email();"> <font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>เบอร์โทรศัพท์ :</td>
<td>
<input type='text' name='phone' maxlength='200' size='40' value="" onKeypress="check_number();"> <font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td colspan="2">
<div style='padding-bottom: 5px;'><b><u>ชำระเงินเข้าบัญชี</u></b></div><table border='0' cellspacing='0' cellpadding='0' class='TableLine' width='100%'><tr align='center'><td align='left' id='TableLineCaption' nowrap> </td><td align='left' id='TableLineCaption' nowrap>ธนาคาร</td><td align='left' id='TableLineCaption' nowrap>ประเภทบัญชี</td><td align='left' id='TableLineCaption' nowrap>สาขา</td><td id='TableLineCaption' nowrap>เลขที่บัญชี</td></tr><tr align='center'><td align='left'><input type='radio' name='bank' checked value='bkb' ></td> <td align='left'><table border='0' cellspacing='0' cellpadding='0'><tr><td id='TableLineBottomNoLine' style='padding-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px;'>ธนาคารกรุงเทพ</td></tr></table></td><td align='left'>สะสมทรัพย์</td><td align='left'> </td><td> </td>
</tr><tr align='center'><td align='left'><input type='radio' name='bank' checked value='scb' ></td> <td align='left'><table border='0' cellspacing='0' cellpadding='0'><tr><td id='TableLineBottomNoLine' style='padding-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px;'>ธนาคารไทยพาณิชย์</td></tr></table></td><td align='left'>ออมทรัพย์</td><td align='left'> </td><td> </td>
</tr><tr align='center'><td align='left'><input type='radio' name='bank' checked value='tfb' ></td> <td align='left'><table border='0' cellspacing='0' cellpadding='0'><tr><td id='TableLineBottomNoLine' style='padding-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px;'>ธนาคารกสิกรไทย</td></tr></table></td><td align='left'>ออมทรัพย์</td><td align='left'> </td><td> </td>
</tr></table>
<font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>จำนวนเงิน :</td>
<td><input type='text' name='Subtotal' maxlength='200' size='10' value="" >
<font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>วันที่ชำระเงิน :</td>
<td><input type='text' name='Subtotal' maxlength='200' size='10' value="" >
*
</td>
</tr>
<tr>
<td class='FormTextLeft'>เวลาโอนเงิน :</td>
<td>
<input name="time" type="text" size="1" maxlength="2" /> : <input name="time" type="text" size="1" maxlength="2" />
<font class='FormFieldRequest'></font> * </td>
</tr>
<tr valign='top'>
<td class='FormTextLeft'>หมายเหตุ :</td>
<td nowrap>
<textarea name='description' id='description' cols='50' rows='6' wrap='VIRTUAL'></textarea>
<font class='FormFieldRequest'></font> </td>
</tr>
<tr valign='top'>
<td class='FormTextLeft'>สินค้าที่สั่ง :</td>
<td><form name="form" id="form">
<select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('parent',this,0)">
<option>คลอโรฟิลล์(ขวดใหญ่)</option>
<option>คลอโรฟิลล์(ขวดกลาง)</option>
<option>คลอโรฟิลล์(แพ็คคู่)</option>
<option>แองเจิ้ล</option>
</select>
</form>
</td>
</tr>
<tr>
<td> </td>
<td>
<form name="submit" method="post" action="mail.php">
<label>
<input type="submit" name="submit" id="submit" value="Submit" />
</label>
</form></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
นี้โค้ด php ไฟล์ mail.php
Code (PHP)
<?
$to = "[email protected]";
$subject = "แจ้งการโอนเงิน";
$header = "แจ้งการโอนเงิน";
$name = $_POST['name'];
$emailp = $_POST['emailp'];
$phone = $_POST['phone'];
$bank = $_POST['bank'];
$Subtotal = $_POST['Subtotal'];
$time = $_POST['time'];
$description = $_POST['description'];
$jumpMenu = $_POST['jumpMenu'];
if (mail($to,$subject,$header,$name,$emailp,$phone,$bank,$Subtotal,$time,$description,$jumpMenu)){
echo "ส่งเมล์เรียบร้อยแล้ว";
}else{
echo "ไม่สามารถส่งเมล์ได้";
}
?>
Tag : PHP, HTML/CSS, CakePHP
|
ประวัติการแก้ไข 2012-04-02 15:13:34 2012-04-02 15:14:01 2012-04-02 15:14:49 2012-04-02 15:24:54
|
|
|
|
|
Date :
2012-04-02 15:12:26 |
By :
beautiful |
View :
2364 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<form name="submit" method="post" action="mail.php">
81.
<label>
82.
<input type="submit" name="submit" id="submit" value="Submit" />
83.
</label>
84.</form>
มีอยู่แค่นี้หรอครับ แล้วมันจะเอาอะไรส่งล่ะ ครอบฟอร์มให้ถูกครับ
|
|
|
|
|
Date :
2012-04-02 15:19:41 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องครอบทั้งแต่เทเบิ้ลที่สองอ่ะครับ ประมาณว่า
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<table border='0' cellspacing='0' cellpadding='0' class='FormCaptionBorderBg ContentCaption_header'>
<tr>
<td><b>แจ้งการชำระเงิน</b></td>
</tr>
</table>
<table border='0' cellspacing='0' cellpadding='0' class='FormBorder ContentCaption_detail'>
<tr>
<td>
<form name="submit" method="post" action="mail.php">
<table border='0' cellspacing='5' cellpadding='0' class='ContentCaption_detail'>
<input type='hidden' name='lang' value='th'>
<tr>
<td class='FormTextLeft'>ชื่อ-สกุล :</td>
<td>
<input type='text' name='name' maxlength='200' size='40' value=""> <font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>อีเมลล์ :</td>
<td>
<input type='text' name='emailp' maxlength='200' size='40' value="" onKeypress="check_email();"> <font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>เบอร์โทรศัพท์ :</td>
<td>
<input type='text' name='phone' maxlength='200' size='40' value="" onKeypress="check_number();"> <font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td colspan="2">
<div style='padding-bottom: 5px;'><b><u>ชำระเงินเข้าบัญชี</u></b></div><table border='0' cellspacing='0' cellpadding='0' class='TableLine' width='100%'><tr align='center'><td align='left' id='TableLineCaption' nowrap> </td><td align='left' id='TableLineCaption' nowrap>ธนาคาร</td><td align='left' id='TableLineCaption' nowrap>ประเภทบัญชี</td><td align='left' id='TableLineCaption' nowrap>สาขา</td><td id='TableLineCaption' nowrap>เลขที่บัญชี</td></tr><tr align='center'><td align='left'><input type='radio' name='bank' checked value='bkb' ></td> <td align='left'><table border='0' cellspacing='0' cellpadding='0'><tr><td id='TableLineBottomNoLine' style='padding-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px;'>ธนาคารกรุงเทพ</td></tr></table></td><td align='left'>สะสมทรัพย์</td><td align='left'> </td><td> </td>
</tr><tr align='center'><td align='left'><input type='radio' name='bank' checked value='scb' ></td> <td align='left'><table border='0' cellspacing='0' cellpadding='0'><tr><td id='TableLineBottomNoLine' style='padding-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px;'>ธนาคารไทยพาณิชย์</td></tr></table></td><td align='left'>ออมทรัพย์</td><td align='left'> </td><td> </td>
</tr><tr align='center'><td align='left'><input type='radio' name='bank' checked value='tfb' ></td> <td align='left'><table border='0' cellspacing='0' cellpadding='0'><tr><td id='TableLineBottomNoLine' style='padding-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px;'>ธนาคารกสิกรไทย</td></tr></table></td><td align='left'>ออมทรัพย์</td><td align='left'> </td><td> </td>
</tr></table>
<font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>จำนวนเงิน :</td>
<td><input type='text' name='Subtotal' maxlength='200' size='10' value="" >
<font class='FormFieldRequest'>*</font> </td>
</tr>
<tr>
<td class='FormTextLeft'>วันที่ชำระเงิน :</td>
<td><input type='text' name='Subtotal' maxlength='200' size='10' value="" >
*
</td>
</tr>
<tr>
<td class='FormTextLeft'>เวลาโอนเงิน :</td>
<td>
<input name="time" type="text" size="1" maxlength="2" /> : <input name="time" type="text" size="1" maxlength="2" />
<font class='FormFieldRequest'></font> * </td>
</tr>
<tr valign='top'>
<td class='FormTextLeft'>หมายเหตุ :</td>
<td nowrap>
<textarea name='description' id='description' cols='50' rows='6' wrap='VIRTUAL'></textarea>
<font class='FormFieldRequest'></font> </td>
</tr>
<tr valign='top'>
<td class='FormTextLeft'>สินค้าที่สั่ง :</td>
<td>
<select name="jumpMenu" id="jumpMenu" onChange="MM_jumpMenu('parent',this,0)">
<option>คลอโรฟิลล์(ขวดใหญ่)</option>
<option>คลอโรฟิลล์(ขวดกลาง)</option>
<option>คลอโรฟิลล์(แพ็คคู่)</option>
<option>แองเจิ้ล</option>
</select>
</td>
</tr>
<tr>
<td> </td>
<td>
<label>
<input type="submit" name="submit" id="submit" value="Submit" />
</label>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
ลองดูครับว่าได้ป่าว?
|
|
|
|
|
Date :
2012-04-02 15:53:41 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง Bug ดูนะครับ
ไฟล์ mail.php
<?
print_r($_POST); #ใช้คำสั่งนี้เพื่อดูว่า form ส่งค่าอะไรมาบ้าง
$to = "[email protected]";
$subject = "แจ้งการโอนเงิน";
$header = "แจ้งการโอนเงิน";
$name = $_POST['name'];
$emailp = $_POST['emailp'];
$phone = $_POST['phone'];
$bank = $_POST['bank'];
$Subtotal = $_POST['Subtotal'];
$time = $_POST['time'];
$description = $_POST['description'];
$jumpMenu = $_POST['jumpMenu'];
if (mail($to,$subject,$header,$name,$emailp,$phone,$bank,$Subtotal,$time,$description,$jumpMenu)){
echo "ส่งเมล์เรียบร้อยแล้ว";
}else{
echo "ไม่สามารถส่งเมล์ได้";
}
?>
|
|
|
|
|
Date :
2012-04-02 16:19:23 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทดสอบกับ Localhost หรือเซิร์ฟเวอร์จิงครับ ถ้า Localhost ต้องเปิดฟังก์ชั่นส่งเมล์ก่อนนะครับ
|
|
|
|
|
Date :
2012-04-02 16:34:43 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เชิฟเวอร์จริงครับ
|
|
|
|
|
Date :
2012-04-02 16:38:19 |
By :
beautiful |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นเพราะไรหรอครับทำไมมันไม่ทำงาน
|
|
|
|
|
Date :
2012-04-02 20:40:17 |
By :
beautiful |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|