|
|
|
ช่วยด้วยครับ อยากทราบวิธีเขียนส่งเมลล์จากตระกร้าสินค้า |
|
|
|
|
|
|
|
พอดีไปโหลดตระกร้าสินค้าที่เค้าแจกฟรีมา แต่ในนั้นไม่มีการส่งเมลล์หลังจากลูกค้าสั่งซื้อแล้ว ผมอยากให้มันส่งเมลล์การสั่งซื้อไปที่เมลล์คนซื้อ และก็ส่งเมลล์มาที่ Admin ด้วย แต่ไม่รู้เขียนยังไง รบกวนผู้รู้ช่วยแนะนำหน่อยครับ เขียนโค๊ดไม่ค่อยเป็นพอแกะๆได้เท่านั้นเอง
อันนี้ตัวอย่างโค๊ดหน้า สรุปรายการสั่งซื้อครับ
Code (PHP)
<form action="" method="post" name="frmCart" id="frmCart">
<table width="415" border="0">
<tr>
<td width="378"><div align="center">
<table width="415" border="0">
<tr>
<td><strong>
<input name="action" type="hidden" id="action" value="add">
</strong></td>
</tr>
<tr>
<td><table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="center">ลำดับ</div></td>
<td>ชื่อสินค้า</td>
<td><div align="center">ราคา</div></td>
<td><div align="center">ค่าจัดส่ง</div></td>
<td><div align="center">จำนวน</div></td>
<td><div align="center">รวม</div></td>
</tr>
<?
//============ แสดงรายการที่ได้สั่งซื้อว่ามีอะไรบ้าง
$strNum=0;
$strTotal=0;
for($i=0;$i<=count($_SESSION["strProductID"]);$i++)
{
//============ เลือกว่าเป็นรายการสินค้าชนิดใด
$result=select("product","where 1=1 and ProductID='".$_SESSION["strProductID"]["$i"]."' ");
if($result)
{
$strNum++;
?>
<tr bgcolor="#FFFFFF">
<td width="9%"> <div align="center">
<?=$strNum;?>
</div></td>
<td width="48%">
<?=$result["ProductName"];?> </td>
<td width="14%"> <div align="right">
<?="".number_format($result["Price"], 2,'.',',');?>
</div></td>
<td width="13%">
<div align="right">
<?="".number_format($result["PriceSend"], 2,'.',',');?>
</div></td>
<td width="13%"><div align="center">
<?=$_SESSION["strQuanlity"]["$i"];?>
</div></td>
<td width="16%"> <div align="right">
<?="".number_format(($result["Price"]+$result["PriceSend"])*$_SESSION["strQuanlity"]["$i"], 2,'.',',');?>
</div></td>
</tr>
<?
$strTotal=$strTotal+(($result["Price"]+$result["PriceSend"])*$_SESSION["strQuanlity"]["$i"]);
}
}
?>
</table>
<br> <table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="right">จำนวน (รายการ)</div></td>
<td> <div align="right">
<?=$strNum;?>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> <div align="right">ราคารวม (บาท)</div></td>
<td width="16%"> <div align="right">
<?="".number_format($strTotal, 2,'.',',');?>
<input name="txtTotal" type="hidden" value="<?=$strTotal;?>">
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td width="378">
<div align="center"><br>
<hr align="center" width="98%" color="#f2f2f6">
<br>
<?
if($strNum==0)
{
echo "<br><center><strong><font color=red>ไม่มีรายการสั่งซื้อ</font></strong></center><br><br>";
}
?>
<input name="BtnContinute" type="button" class="button" id="BtnContinute" value="กลับไปแก้ไข" onClick="window.location='cart.php';">
<?
if($strNum>0)
{?>
<input name="BtnPayment" type="submit" class="button" id="BtnPayment" value="ยืนยันการสั่งซื้อ">
<?}?>
<br>
</div></td>
</tr>
</table>
</div></td>
</tr>
</table>
</form>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-05-14 00:36:24 |
By :
fcuk2u |
View :
870 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้าใจว่าตรงส่วนของ
<form action="" method="post" name="frmCart" id="frmCart">
ทางคุณไม่ได้กำหนด action ที่จะให้เก็บข้อมูล ซึ่งถ้าหากกำหนดไปอีกไฟล์ปลายทางเพื่อเก็บข้อมูลลงตารางแล้ว
น่าจะเขียนฟังกชั่นเมล์ตรงนั้นได้เลยค่ะ โดยเอาตัวแปรแต่ละตัวแนบไปกะเมล์
แค่นี้คงไม่น่ายากนะ
|
|
|
|
|
Date :
2011-05-14 14:05:07 |
By :
thaimaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำได้แล้วครับขอบคุณที่แนะนำครับ
แต่อยากจะได้ตัวอย่างการเขียนส่งเมลล์ หน่อยครับ ไครพอจะมีบ้างครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2011-05-15 19:28:56 |
By :
fcuk2u |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|