|
|
|
เกิดปัญหา-รับค่าจาก popup1 มาแสดง textbox 1 แล้วจะเอาค่า textbox 1 ไปกำหนดค่าใน popup 2 ยังไงอ่ะครับ |
|
|
|
|
|
|
|
เกิดปัญหา-รับค่าจาก popup1 มาแสดง textbox 1 แล้วจะเอาค่า textbox 1 ไปกำหนดค่าใน popup 2 ยังไงอ่ะครับ
เมื่อเรารับค่าจาก popup1 คือ ชื่อโรงเรียน แล้วเอา id โรงเรียนไปกำหนดชื่ออาจารย์อีกที ใน popup 2 ครับ
ผมจะ where จาก Get ยังไงครับ รบกวนด้วยนะครับ
เปิด popup (JavaScript)
<script language="javascript">
function OpenPopupGeo(intLine)
{
window.open('getGeo.php?Line='+intLine,'myPopup','width=620,height=600,toolbar=0, menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
function OpenPopupPro(intLine)
{
window.open('getPro.php?Line='+intLine,'myPopup','width=620,height=650,toolbar=0, menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
function OpenPopupAmp(intLine)
{
window.open('getAmp.php?Line='+intLine,'myPopup','width=620,height=200,toolbar=0, menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
</script>
ชื่อโรงเรียน(PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<title></title>
<style type="text/css">
<!--
</head>
<script language="JavaScript" type="text/javascript">
function selData(SC_CODE,SC_NAME)
{
var sSC_CODE = self.opener.document.getElementById("txtSC_CODE");
sSC_CODE.value = SC_CODE;
var sSC_NAME = self.opener.document.getElementById("txtSC_NAME");
sSC_NAME.value = SC_NAME;
window.close();
}
</script>
<body>
<?
include("connectDB.php");
$strSQL = "SELECT * from school ";
$objParse = oci_parse($objConnect, $strSQL);
oci_execute ($objParse,OCI_DEFAULT);
?>
<table width="600" border="1" align="center">
<tr>
<th> <div align="center">ชื่อโรงเรียน</div></th>
</tr>
<?
while($objResult = oci_fetch_array($objParse,OCI_BOTH))
{
?>
<tr>
<td><div align="center"><a href="#" onclick="selData('<?=$objResult["SC_CODE"];?>','<?=$objResult["SC_NAME"];?>');">
<?=$objResult["SC_NAME"];?>
</a></div></td>
</tr>
<?
}
?>
</table>
<?
oci_close($objConnect);
?>
</body>
</html>
ชื่ออาจาย์ (PHP)
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<title></title>
</head>
<script language="javascript">
function selData(TA_CODE,TA_NAME)
{
var sTA_CODE = self.opener.document.getElementById("txtTA_CODE");
sTA_CODE.value = TA_CODE;
var sTA_NAME = self.opener.document.getElementById("txtTA_NAME);
sTA_NAME.value = TA_NAME;
window.close();
}
</script>
<body>
<?
include("connectDB.php");
$strSQL = "SELECT * from teacher where SC_TA_CODE = '****' ";
$objParse = oci_parse($objConnect, $strSQL);
oci_execute ($objParse,OCI_DEFAULT);
?>
<table width="600" border="1">
<tr>
<th> <div align="center">ชื่อผู้แจ้งงาน</div></th>
</tr>
<?
while($objResult = oci_fetch_array($objParse,OCI_BOTH))
{
?>
<tr>
<td><div align="center"><a href="#" OnClick="selData('<?=$objResult["TA_CODE"];?>','<?=$objResult["TA_NAME"];?>');">
<?=$objResult["TA_NAME"];?>
</a></div></td>
</tr>
<?
}
?>
</table>
<?
oci_close($objConnect);
?>
</body>
</html>
Tag : PHP, MySQL, Oracle, JavaScript
|
|
|
|
|
|
Date :
2013-07-10 16:06:59 |
By :
xmysteryz |
View :
898 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ เปลี่ยน Script ใหม่
Code (JavaScript)
<script language="javascript">
function OpenPopupGeo()
{
window.open('getSC.php','myPopup','width=620,height=650,toolbar=0, menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
function OpenPopupTA()
{
window.open('getPro.php?SC_CODE='+document.getElementById("txtSC_CODE").value,'myPopup','width=620,height=650,toolbar=0, menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
</script>
และ where
ชื่ออาจารย์ (PHP)
$strSQL = "SELECT * from teacher where SC_TA_CODE = '".$_GET['SC_CODE']."' ";
ขอบคุณ www.thaicreate.com ครับ
|
ประวัติการแก้ไข 2013-07-11 10:59:38
|
|
|
|
Date :
2013-07-11 10:53:40 |
By :
xmysteryz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไปครับ
|
|
|
|
|
Date :
2013-07-11 11:08:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|