|
|
|
ขอปรึกษาเรื่อง 1ฟอร์ม 1ปุ่มSubmit แต่ 2 action ครับ |
|
|
|
|
|
|
|
ไป 2 เพจ ก็ต้องเปิด 2 เพจ ขึ้นมาหรือเปล่าครับ ....
ถ้าค่อย ๆ หา ผมว่าทำได้ แต่ขัดกับหลักความเป็นจริง หรือเปล่า
|
|
|
|
|
Date :
2013-12-17 08:43:01 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ประมาณว่าต้องการ โหลดภาพ กับข้อมูล ฟอร์ม save ลงdatabase ในเครื่องserverที่ตัวwebserverเอง 1 ที่ และ ยิงมาเก็บที่serverกลางอีก 1 ที่น่ะครับ
|
|
|
|
|
Date :
2013-12-17 08:45:28 |
By :
pantatonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ตอน insert ทำคิวรี่ 2 ครั้ง ง่ายกว่าหรือเปล่าครับ แต่ละครั้งแยกติดต่อข้อมูลให้ชัดเจน ....
|
|
|
|
|
Date :
2013-12-17 09:09:13 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Server เครื่องที่ 2 อยู่ข้าม Domain กันอ่าครับ
|
|
|
|
|
Date :
2013-12-17 09:53:49 |
By :
pantatonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนนี้ ปัญหาของผมคือจาก Code ด้านล่าง
ผมต้องเขียนตรงไหนเพิ่ม ถึงจะเป็นการ submit action ไปที่ save_1.php และ save_2.php
จากการกด Submit แค่ 1 ครั้ง ครับ
เลยขอความช่วยเหลือนิดนึง กับประเด็น
"นการ submit action ไปที่ save_1.php และ save_2.php
จากการกด Submit แค่ 1 ครั้ง"
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<input type="text" name="txt" id="txt" />
<br /><br />
<input type="file" name="file" id="file" />
<br /><br />
<input type="submit" name="button" id="button" value="Submit" />
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-12-17 11:17:09 |
By :
pantatonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณก็ไปหน้าเดียว แต่ในหน้าถัดไปเช่น save.php คุณก็วาง code 2 ชุด และคุณหาทางทำไงให้เชื่อต่อ server กลาง ดีกว่า!!...ลองทำตามที่ admin แนะนำ การส่งค่าข้าม domain ตรงนี้จะถูกจุดมากกว่า ...
|
|
|
|
|
Date :
2013-12-17 11:40:12 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ได้ไหมครับ??
Code (PHP)
<form action='ใส่หน้า.php'>
<input type='submit' name='page1' value='page1'>
<input type='submit' name='page2' value='page2'>
</form>
if($page1 == 'page1')
{
echo "<script>location='save_1.php';</script>";
}
else if ($page2 == 'page2')
{
echo "<script>location='save_2.php';</script>";
}
|
ประวัติการแก้ไข 2013-12-17 12:08:37 2013-12-17 12:19:51
|
|
|
|
Date :
2013-12-17 12:08:13 |
By :
champkung226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
submit ค่าลงไปที่ iframe
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript">
function fncSubmit(){
document.form1.target = "ifupdate1"
document.form1.method = "post"
document.form1.action = "save_1.php"
document.form1.submit();
document.form1.target = "ifupdate2"
document.form1.method = "post"
document.form1.action = "save_2.php"
document.form1.submit();
}
</script>
</head>
<body>
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<input type="text" name="txt" id="txt" />
<br /><br />
<input type="file" name="file" id="file" />
<br /><br />
<input type="button" name="button" id="button" value="Submit" onclick="fncSubmit();" />
</form>
<iframe name="ifupdate1" width="800" height="300" style="display:none"></iframe>
<iframe name="ifupdate2" width="800" height="300" style="display:none"></iframe>
</body>
</html>
|
|
|
|
|
Date :
2013-12-17 15:29:48 |
By :
เรก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2013-12-18 08:41:57 |
By :
pantatonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|