ช่วยดูโค้ดให้หน่อยนะค่ะ ไม่รู้ว่าผิดตรงใหน function popupsearch3(module,table,field,field1,output,output1, ref,title){
////////////search.php
<script>
function popupsearch3(module,table,field,field1,output,output1, ref,title){
w = screen.availWidth;
h = screen.availHeight;
var popW = 650, popH = 400;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
window.open("position_list.php?table="+table+"&module="+module+"&field="+field+"&field1="+field1+"&output="+output+"&output1="+output1+"&ref="+ref+"&title="+title,"loadorder","width="+popW+",height="+popH+",top="+topPos+",left="+leftPos+",menubar=no,resizeable=yes,toolbar=no,scrollbars=yes");
} // end function
</SCRIPT>
<tr>
<td colspan="4" align="left" valign="top">3. ชื่อตำแหน่งงานที่ทำ (ระบุ)
<label>
<input name="TxtQN_POS_ID" type="hidden" id="TxtQN_POS_ID" value="TxtQN_POS_ID"/>
<input name="TxtPOS_NAME" type="text" id="TxtPOS_NAME" size="40" readonly="readonly"/>
<img src="search.gif" width="23" height="20" align="absmiddle" alt="เลือกตำแหน่งงาน" style="cursor:hand;"
onClick="popupsearch3('position','POS_ID','POS_NAME','frmmain.TxtQN_POS_ID','frmmain.TxtPOS_NAME', '','ตำแหน่งงาน')" /> <font color="red">(คลิกเพื่อค้นหาตำแหน่งงาน)</font></label></td>
</tr>
////// position_list.php
<script>
function selectitem(field,field1,output,output1){
eval("self.opener." + output +".value='"+field+"'");
eval("self.opener." + output1 +".value='"+field1+"'");
window.close();
}
</script>
<html>
<head>
<title>ค้นหาตำแหน่งงาน</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="script/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="100%" height="100%" border="0" align="center">
<tr>
<td valign="top">
<!------------------------------------------------ Start For Code ------------------------------------------------>
<?
include("config.inc.php");
mysql_connect($host,$user,$pwd);
mysql_select_db($dbname);
$sql = mysql_query("SELECT COUNT(*) FROM ref_qn_position");
$res = mysql_fetch_array($sql);
$ref_qn_position = $res[0];
//echo"$ref_qn_position";
?>
<TABLE width="550" class="tabshow" align="center">
<TR>
<TD colspan="2" align="center" class="textnormal"><div align="left">ผลการสืบค้นพบจำนวน<span class="star">
<?echo"$ref_qn_position";?></span> แถว</div></TD>
</TR>
<TR class="tabshowhead">
<TD align="center" width="100">รหัส</TD>
<TD align="center" width="450">รายการ</TD>
</TR>
<?$result = mysql_query("select * from ref_qn_position") or die ("Err Can not to result") ;
while ($dbarr = mysql_fetch_array($result)) {
?>
<a h>
<TR class="tabshowsoft" onmouseover=this.style.backgroundColor="#E8F3FF" onmouseout=this.style.backgroundColor="" style="cursor:pointer; " onClick="selectitem('<?php $dbarr['POS_ID'] ; ?>','<?php $dbarr['POS_NAME'] ; ?>','frmmain.TxtQN_POS_ID','frmmain.TxtPOS_NAME')">
<TD align="center" width="100" valign="top"><?php echo $dbarr['POS_ID'] ; ?></TD>
<TD align="center" width="450"> <?php echo $dbarr['POS_NAME'] ; ?></TD>
</TR></a>
<?}?>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td> </td>
<td><div align="center">
<input type="button" name="Button" value="ปิดหน้าต่างนี้" onClick="window.close();" />
</div></td>
<td> </td>
</tr>
</table>
</body></html>Tag : - - - -
Date :
2009-11-25 13:37:34
By :
puybc484
View :
876
Reply :
3
แล้วมันทำงานไม่ถูกต้องอย่างไรล่ะครับ
กดปุ่มแล้วไม่ทำงาน หรือ แสดงค่าผิดหรือ ไม่ทำงานเลย
เดาไม่ถูกหรอกครับ ว่าผิดตรงไหน
Date :
2009-11-25 14:09:15
By :
lozomac
มันไม่ส่งค่าที่เลือกไปที่ไฟล์ search.php
Date :
2009-11-25 14:45:45
By :
puybc484
Code (PHP)
<img src="search.gif" width="23" height="20" align="absmiddle" alt="เลือกตำแหน่งงาน" style="cursor:hand;"
onClick="popupsearch3('position','POS_ID','POS_NAME',frmmain.TxtQN_POS_ID.value,frmmain.TxtPOS_NAME.value, '','ตำแหน่งงาน')" />
Date :
2009-11-25 17:16:34
By :
lozomac
Load balance : Server 04