|
|
|
รบกวนด้วยครับ ต้องการให้ result โชว์เป็น Popup ขึ้นมาครับ |
|
|
|
|
|
|
|
ต้องการให้ result โชว์เป็น Popup ขึ้นมาแล้วกด ok ใน popup นั้น และให้ปิด popup พร้อมกับเคลียร์ค่าหน้าจอให้เป็นค่าว่าง ครับ รบกวนด้วยครับ
code ครับ
<?php
$txtKeyuser = '';
if(
(isset($_GET["txtKeyword1"]))
&&
( ! empty($_GET["txtKeyword1"]))
) {
$txtKeyuser = $_GET["txtKeyword1"];
}
$txtKeypass = '';
if(
(isset($_GET["txtKeyword"]))
&&
( ! empty($_GET["txtKeyword"]))
) {
$txtKeypass = $_GET["txtKeyword"];
}
?>
<body bgcolor= "FFC0CB">
<form>
<center>
<FONT SIZE="4">user:</Font><br>
<input name="txtKeyword1" type="text" id="txtKeyword1" value="<?php echo $txtKeyuser;?>"> <br>
<tr>
<br>
<FONT SIZE="4">password:</Font><br>
<input name="txtKeyword" type="text" id="txtKeyword" value="<?php echo $txtKeypass;?>"> <br>
<br>
<input type="submit" value="Search"></th> <br>
<br>
</form>
<?php
if(
( ! empty($txtKeyuser))
&&
( ! empty($txtKeypass))
)
{
$url = "http://172.xx.xx.xx/xxx?WSDL";
$xmlString= '<soapenv:Envelope xmlns:soapenv="http://schemas/" xmlns:ser="http://service/">
<soapenv:Header/>
<soapenv:Body>
<ser:dealerLogin>
<Request>
<transactionId>xxx</transactionId>
<auth_username>xxx</auth_username>
<auth_password>xxx</auth_password>
<username>'.$txtKeyuser.'</username>
<password>'.$txtKeypass.'</password>
</Request>
</ser:dealerLogin>
</soapenv:Body>
</soapenv:Envelope>';
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, $xmlString);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
$result = curl_exec($ch);
echo $result ;
}
?>
Tag : PHP
|
ประวัติการแก้ไข 2021-02-08 18:01:58
|
|
|
|
|
Date :
2021-02-08 12:33:57 |
By :
kunchar |
View :
527 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
https://getbootstrap.com/docs/4.0/components/modal/
ส่วนการล้างอาจใช้ javascript หรือ ajax&jquery อ้างอิงจาก id,class textbox เช่น
Code (PHP)
$("#btn").click(function () {
$('.keyword').val('');
});
|
ประวัติการแก้ไข 2021-02-08 18:24:48
|
|
|
|
Date :
2021-02-08 18:20:21 |
By :
Genesis™ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|