|
|
|
ช่วยผมทีครับ ส่งค่ากลับเป็น undefined เฉยเลย ช่วยทีครับผมมม ฮ่า ๆ |
|
|
|
|
|
|
|
ผมไม่ทราบว่าส่งค่ากลับมาให้ textbox ยังไง ผมก็คิดว่า ผมใช้ Script ถูกละนะครับ
โดยผมกำหนด value"เป็นid" ผมอยากส่งค่ากลับมาเป็น "ID" อะครับ โดยเวลากด เลือกแล้ว
ค่าที่อยู่ใน textbox [No.] จะส่ง ID ไปให้ อีก หน้าหนึ่ง ซึ่งมี textbox รับอยู่แล้ว
อะครับ โปรช่วยดูด้วยเด้อ
Code (ตารางแสดงรายการร้องขอ)
<script language="JavaScript">
function windowOpen() {
var myWindow=window.open('statusCradle.php','windowRef','width=630,height=630');
if (!myWindow.opener) myWindow.opener = self;
}
</script>
<form id="frmMain" name="frmMain" method="post" action="">
<p align="center"><strong class="k">::ตารางแสดงรายการร้องขอ::</strong>
<?php
include('include/function.php');
$dblink = connect_db();
$strSQL = "SELECT id,typePT,hn,vn,pname,fname,lname,wardAC,WantOC,WantWC,WantWB,WantBB,TollN,TollOG,TollSL FROM addpatient WHERE id='$id'";
$resultSQL = mysqli_query($dblink,$strSQL);
while ($rows = mysqli_fetch_array($resultSQL)){
?>
</span></p>
<Table width="590" border="3" align="center" bordercolor="#FF9F00">
<tr>
<td colspan=3 align="Center" bgcolor="#FFFFFF" > ลำดับที่ :: <y><?=$rows['id']?></y> ประเภทผู้ป่วย ::
<y><?=get_PTName($rows['typePT'])?> </y>
</tr>
<tr>
<td colspan="2" align="left" bgcolor="#FFFFFF">HN :: <y><?=$rows['hn']?></y></td>
<td width="258" align="left" bgcolor="#FFFFFF">VN Or AN :: <y><?=$rows['vn']?></y></td>
</tr>
<tr>
<td width="151" align="left" bgcolor="#FFFFFF">คำนำหน้าชื่อ :: <y><?=$rows['pname']?></y></td>
<td width="155" align="left" bgcolor="#FFFFFF">ชื่อ :: <y><?=$rows['fname']?></y></td>
<td align="left" bgcolor="#FFFFFF">นามสกุล :: <y><?=$rows['lname']?></y></td>
</tr>
<tr>
<td colspan=3 align="Center" bgcolor="#FFFFFF">รับจาก ::
<label for="textfield">
<y><?=get_Wdname($rows['wardAC'])?></y>
</label></td>
</tr>
<tr>
<td align="left" bgcolor="#FFFFFF">สิ่งที่ต้องการ ::</td>
<td colspan="2" bgcolor="#FFFFFF"><y><?=get_WtOC($rows['WantOC'])?>
<?=get_WtWC($rows['WantWC'])?>
<?=get_WtB($rows['WantWB'])?>
<?=get_WtBB($rows['WantBB'])?></y></td>
</tr>
<tr>
<td align="left" bgcolor="#FFFFFF">อุปกรณ์ ::</td>
<td colspan="2" bgcolor="#FFFFFF"><y>
<?=get_TlN($rows['TollN'])?>
<?=get_TlOG($rows['TollOG'])?>
<?=get_TlSL($rows['TollSL'])?>
</y></td>
</tr>
<tr>
<td align="left" bgcolor="#FFFFFF">ชื่อผู้รับ ::</td>
<td colspan="2" bgcolor="#FFFFFF"><y>
<div align="left">
<input type="text" name="Showname1" id="Showname1" value=""/>
<label for="Showname"></label>
<input type="text" name="Showname2" id="Showname2" />
<input name="n_Show_2" type="hidden"id="n_Show_2"/>
<input name="openPopup" type="button" id="openPopup" onClick="Javascript:windowOpen();" value="รับการร้องขอ">
</div>
</y></td>
</tr>
<tr>
<td colspan="3" align="center" bgcolor="#FFFFFF"><input type="submit" name="button" id="button" style="width:88px;height:32px"value="ตกลง"onClick="Javascript:windowOpen1('updateCradler.php?id=<?=$rows['id']?>'); submit()"/> </td>
</tr>
</Table>
<?
} // end loop
?>
</table>
</form>
</body>
Code (สถานะการดำเนินงานศูนย์เปล)
<?php
$page = $_SERVER['PHP_SELF'];
$sec = "10";
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="refresh" content="<?php echo $sec?>;URL='<?php echo $page?>'">
<title>เลือกผู้ช่วย</title>
</head>
<body>
<script language="JavaScript">
function updateOpener() {
window.opener.document.frmMain.Showname1.value = document.frmMain.txtInput.value;
window.close();
}
</script>
<form name="frmMain" id="frmMain" method="post" action="">
<table align="center" width="588" height="28" border="2">
<caption>::สถานะการดำเนินงานศูนย์เปล::</caption>
<thead>
<tr>
<td width="32"> <div align="center">No. </div></td>
<td width="102" >คำนำหน้า</td>
<td width="81">ชื่อ</td>
<td width="126">นามสกุล</td>
<td width="108">สถานะ</td>
<td width="97"><div align="center">เลือก</div></td>
</tr>
</thead>
<tbody>
<?php
include('include/function.php');
$dblink = connect_db();
$strSQL = "SELECT id,pname,fname,lname,statusCD FROM cradler
where cradler.id not in (select cradler from addpatient where ordercradler=2)";
$resultSQL = mysqli_query($dblink,$strSQL);
while ($rows = mysqli_fetch_array($resultSQL)){
?>
<tr>
<td><div align="center">
<input type="text" name="txtInput" size="5" readonly="readonly" value="<? echo $rows['id']; ?>" >
</div></td>
<td><?=$rows['pname']?></td>
<td><?=$rows['fname']?></td>
<td><?=$rows['lname']?></td>
<td><?=get_UPOD($rows['statusCD'])?></td>
<td><div align="center">
<input name="select" type="submit" id="select"onClick="Javascript:updateOpener()" value="เลือก">
</div></td>
</tr>
<?
} // end loop
?>
</tbody>
</table>
</form>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS, JavaScript, Action Script, jQuery
|
|
|
|
|
|
Date :
2013-09-10 10:46:37 |
By :
The_Colosseum |
View :
782 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บ๊ะ ๆ ไม่ได้ เลยยย 5 5
|
|
|
|
|
Date :
2013-09-10 15:58:37 |
By :
The_Colosseum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|