|
|
|
เมื่อกดปุ่ม "รับ" จะให้โชว์ข้อมูล โดยที่เราจัดหน้าโชว์ข้อมูลไว้แล้ว |
|
|
|
|
|
|
|
คืออยากจะทราบว่าจะทำอย่างไรให้ เมื่อกด "รับ" แล้วข้อมูลจะไปโชว์อีกหน้าหนึ่ง
คือหน้าที่เห็นข้างบนนั้น ผมได้ดึงมาจากฐานข้อมูลอะครับ คือไม่ได้มาจาก การสมัครหรือลงทะเบียนแต่อย่างไร
พอจะมีวิธีเขียนไม๊ครับ พอดีตอนนี้ตื้อ ๆนึกไรไม่ออกครับ
Code
<table width="1015" border="0"align="center" cellpadding="1" cellspacing="1" bgcolor="#FFCB97" class="u" >
<caption>
<strong class="k">::ตารางแสดงรายการร้องขอ::</strong>
</caption>
<thead>
<tr bgcolor="#FFFFFF">
<td width="100" height="24" align="center">ประเภทผู้ป่วย</td>
<td width="92" align="center" >HN</td>
<td width="113" align="center">VN Or AN</td>
<td width="73" align="center">คำนำหน้า </td>
<td width="110" align="center">ชื่อ</td>
<td width="116" align="center">นามสกุล</td>
<td width="115" align="center">ชื่อตำแหน่งWard</td>
<td width="151" align="center">สิ่งที่ต้องการ</td>
<td width="117" align="center">อุปกรณ์</td>
</tr>
</thead>
<tbody>
<?php
include('include/function.php');
$dblink = connect_db();
$strSQL = "SELECT typePT,hn,vn,pname,fname,lname,wardAC,WantOC,WantWC,WantWB,WantBB,TollN,TollOG,TollSL FROM addpatient";
$resultSQL = mysqli_query($dblink,$strSQL);
while ($rows = mysqli_fetch_array($resultSQL)){
?>
<tr bgcolor="#FFFFFF">
<td valign="middle"><?=get_PTName($rows['typePT'])?></td>
<td valign="middle"><?=$rows['hn']?></td>
<td valign="middle"><?=$rows['vn']?></td>
<td valign="middle"><?=$rows['pname']?></td>
<td valign="middle"><?=$rows['fname']?></td>
<td valign="middle"><?=$rows['lname']?></td>
<td valign="middle"><?=get_Wdname($rows['wardAC'])?></td>
<td valign="middle"><?=get_WtOC($rows['WantOC'])?>
<?=get_WtWC($rows['WantWC'])?>
<?=get_WtB($rows['WantWB'])?>
<?=get_WtBB($rows['WantWBB'])?></td>
<td valign="middle"><?=get_TlN($rows['TollN'])?>
<?=get_TlOG($rows['TollOG'])?>
<?=get_TlSL($rows['TollSL'])?></td>
<td width="100" align="center">รับ</td>
</tr>
<?
} // end loop
?>
</tbody>
</table>
Tag : PHP, MySQL, JavaScript, Ajax, jQuery, CakePHP
|
|
|
|
|
|
Date :
2013-09-04 15:35:14 |
By :
คนผ่านทาง |
View :
646 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้าใจว่า hn คือไพรมารี
ตรงคำว่า รับ ใส่
Code (PHP)
<a href="xxxx.php?hn=<?=$rows['hn']?>" target="_blank">รับ</a>
แล้วสร้างไฟล์ xxx.php โค้ดดังนี้
Code (PHP)
$hn=$_GET["hn"];
<table width="1015" border="0"align="center" cellpadding="1" cellspacing="1" bgcolor="#FFCB97" class="u" >
<caption>
<strong class="k">::ตารางแสดงรายการร้องขอ::</strong>
</caption>
<thead>
<tr bgcolor="#FFFFFF">
<td width="100" height="24" align="center">ประเภทผู้ป่วย</td>
<td width="92" align="center" >HN</td>
<td width="113" align="center">VN Or AN</td>
<td width="73" align="center">คำนำหน้า </td>
<td width="110" align="center">ชื่อ</td>
<td width="116" align="center">นามสกุล</td>
<td width="115" align="center">ชื่อตำแหน่งWard</td>
<td width="151" align="center">สิ่งที่ต้องการ</td>
<td width="117" align="center">อุปกรณ์</td>
</tr>
</thead>
<tbody>
<?php
include('include/function.php');
$dblink = connect_db();
$strSQL = "SELECT typePT,hn,vn,pname,fname,lname,wardAC,WantOC,WantWC,WantWB,WantBB,TollN,TollOG,TollSL FROM addpatient WHERE hn='$hn' ";
$resultSQL = mysqli_query($dblink,$strSQL);
while ($rows = mysqli_fetch_array($resultSQL)){
?>
<tr bgcolor="#FFFFFF">
<td valign="middle"><?=get_PTName($rows['typePT'])?></td>
<td valign="middle"><?=$rows['hn']?></td>
<td valign="middle"><?=$rows['vn']?></td>
<td valign="middle"><?=$rows['pname']?></td>
<td valign="middle"><?=$rows['fname']?></td>
<td valign="middle"><?=$rows['lname']?></td>
<td valign="middle"><?=get_Wdname($rows['wardAC'])?></td>
<td valign="middle"><?=get_WtOC($rows['WantOC'])?>
<?=get_WtWC($rows['WantWC'])?>
<?=get_WtB($rows['WantWB'])?>
<?=get_WtBB($rows['WantWBB'])?></td>
<td valign="middle"><?=get_TlN($rows['TollN'])?>
<?=get_TlOG($rows['TollOG'])?>
<?=get_TlSL($rows['TollSL'])?></td>
<td width="100" align="center">รับ</td>
</tr>
<?
} // end loop
?>
</tbody>
</table>
|
|
|
|
|
Date :
2013-09-04 15:49:41 |
By :
meannerss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
No. 1
ถ้า hn ผมไมไ่ด้เป็น Primary ผมต้องเอา primary ที่ผมสร้างขึ้นมาแทนใช่ไหมครับ ท่าน
|
|
|
|
|
Date :
2013-09-04 15:56:48 |
By :
คนผ่านทาง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอถามอีกทีครับ ว่าเมื่อไหร่ที่เรากดปุ่ม "รับ" แล้ว
จะให้ข้อมูลแถวนั้นถูกลบไปเลยอะครับ เหมือนว่า อัพเดทข้อมูล ว่า คุณได้รับไปแล้ว ต่อไปคือการดำเนินงาน ส่งแต่ละ Ward
อะไรประมาณนี้อะครับ รบกวนด้วยนะครับ ผม
|
|
|
|
|
Date :
2013-09-04 16:10:20 |
By :
คนผ่านทาง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ jquery ครับ กด => รับ => ลบ จากหน้านี้ไปเลย
|
|
|
|
|
Date :
2013-09-04 17:31:15 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่าลืมสมัครสมาชิกด้วยละ
|
|
|
|
|
Date :
2013-09-04 17:33:17 |
By :
yamcrocodile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|