|
|
|
1 ปุ่ม submit แต่ 2 Action ทำไงครับ ต้องทำไงครับ |
|
|
|
|
|
|
|
ทำไม่ได้ครับ นอกจากจะส่งด้วย ajax อีกตัวนึง อันนั้นทำได้ ทำยังไงนั้น สมัครสมาชิกแล้วอ่านบทเรียนครับ
|
|
|
|
|
Date :
2011-03-15 14:09:28 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สมัครแล้วครับ แต่เข้าไปอ่านไม่รู้เรื่องเลย
|
|
|
|
|
Date :
2011-03-15 14:16:34 |
By :
wutweb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูเหมือนเค้าต้องการทำสองอย่างพร้อมกันนะพี่วิน ไม่ได้อยากเลือกทำอย่างใดอย่างหนึ่ง หรือว่าผมเข้าใจผิดหว่า
|
ประวัติการแก้ไข 2011-03-15 14:55:06
|
|
|
|
Date :
2011-03-15 14:54:50 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแบบคิดง่ายๆนะครับ สำหรับผม ก็ ทำ
ขั้นแรกเสร็จ ใส่ ไห้มันไปขั้นที่ 2 ก็ได้ครับ
เหมือนที่ว่า ถ้าทำอันแรกเสร็จ แล้วสั่งให้ไปหน้าที่ 2 ต่อเหมือนตอนที่เราบัึนทึกค่าอะครับ แทนที่จะกลับ มาหน้าform ก็ใส่ไป insert อีกอันครับ
ไม่แน่ใจว่าใช่แบบที่ผมเข้าใจเปล่า่นะครับ
|
|
|
|
|
Date :
2011-03-15 15:13:30 |
By :
tingtongkub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันส่งไป 2 action ไม่ได้หรอกครับ ให้ใช้วิธี action ไปที่ insert_data.php แล้วก็ action ไปที่ http://61.19.241.6/tmbpayment/payment.aspx อีกรอบครับ
วิธีการไม่ยากครับ ในไฟล์ insert_data.php ให้กำหนดในส่วนของของ body ให้ทำการ action แบบ auto ครับ
Code (form.php)
<form form="form1" action="insert_data.php" method="post">
<input type="text" name="txtCustomerID" value="">
</form>
Code (insert_data.php)
<?
// คำสั่ง save ในหน้า insert_data.php
?>
<body onload="document.form1.submit();">
<form name="form1" action="http://61.19.241.6/tmbpayment/payment.aspx" method="post">
<input type="hidden" name="txtCustomerID" value="<?=$_POST["txtCustomerID"];?>">
</form>
ให้ทำการส่งค่าเป็นทอด ๆ ผ่าน hidden ครับ จากตัวอย่างนี้เมื่อกมีการกด submit ไปยัง insert_data.php หลังจาก save ข้อมูลเสร็จก็จะทำการ submit ไปยัง http://61.19.241.6/tmbpayment/payment.aspx อัตโนมัติ
|
|
|
|
|
Date :
2011-03-15 17:47:53 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแบบ mr.win บอกแล้วอ่ะครับ
มันค้างอยู่หน้า insert_data.php อ่ะครับ
ไม่ได้ส่งค่าต่อไปยัง http://61.19.241.6/tmbpayment/payment.aspx
|
|
|
|
|
Date :
2011-03-16 12:17:19 |
By :
wutweb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา code มาดู
|
|
|
|
|
Date :
2011-03-16 12:26:45 |
By :
ดู |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ของหน้า insert_data.php
Code (PHP)
<?php
$con = mysql_connect("localhost","XXXXXXXX","XXXXXXXXXXXX");
if (!$con)
{
die('Connecting database error: ' . mysql_error());
}
mysql_select_db("wwwtan2_tmb", $con);
$sql=mysql_query("INSERT INTO payment(id,invoiceno, version, terminalid, amount, backendurl , merchantdata, currencycode, title, fname, lname, email, hphone, mphone, bphone,cnno,date) VALUES('$_POST[INVOICENO]','$_POST[INVOICENO]','$_POST[VERSION]','$_POST[TERMINALID]','$_POST[stang]','$_POST[BackendUrl]','$_POST[merchantdata]','$_POST[CURRENCYCODE]' ,'$_POST[select]','$_POST[textfield2]'
,'$_POST[textfield3]','$_POST[textfield5]','$_POST[textfield6]','$_POST[textfield7]','$_POST[textfield8]','$_POST[textfield4]','$_POST[date]')");
?>
<body onload="document.sendform.submit();">
<form form="sendform" action="http://61.19.241.6/tmbpayment/payment.aspx" method="post">
<input type="hidden" name="stang" value="<?=$_POST["stang"];?>">
</form>
</body>
|
ประวัติการแก้ไข 2011-03-16 12:39:45
|
|
|
|
Date :
2011-03-16 12:37:41 |
By :
wutweb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ของ หน้า form
<form name='sendform' method=post action="insert_data.php" onSubmit="JavaScript:return fncSubmit();" >
insert_data.php ทำหน้าที่ บันทึกข้อมุลลงฐานข้อมูล
ส่วน http://61.19.241.6/tmbpayment/payment.aspx รับข้อมูลไปทำต่อหน้ากรอกข้อมูลบัตรเครดิต
|
ประวัติการแก้ไข 2011-03-16 12:41:29
|
|
|
|
Date :
2011-03-16 12:39:05 |
By :
wutweb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้ว ได้แล้วครับ
ขอบคุณมากๆครับ
|
|
|
|
|
Date :
2011-03-16 14:07:43 |
By :
wutweb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยินดีด้วยครับ
|
|
|
|
|
Date :
2011-03-16 15:30:34 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่วินด้วยค๊าบบบ
|
|
|
|
|
Date :
2011-03-16 15:45:11 |
By :
wutweb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|