|
|
|
สอบถามเรื่องการ ค้นหาข้อมูล แล้วกดลิงค์เข้าฟอร์มครับ |
|
|
|
|
|
|
|
Code (PHP)
<?
include('connectdb.php');
include('config.php');
include('function.php');
?>
<html>
<head>
<title>รายชื่อลูกค้า</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
body { margin: 0px 0px; padding: 0px 0px}
a:link { color: #000000; text-decoration: none}
a:visited { color: #000000; text-decoration: none}
a:active { color: #000000; text-decoration: underline}
a:hover { color: #000000; text-decoration: underline}
.cb3 {
background-color: #FFCC00;
color: #000000;
font-size: 8pt;
font-family: sans-serif;
}
.cbRed {
background-color: #CC0000;
color: #FFFFFF;
font-size: 9pt;
font-family: "MS Sans Serif";
font-weight: bold;
}
-->
</style>
<script language="javascript">
function sendToForm(val1,field1,val2,field2,val3,field3)
{
eval("opener.document.all." + field1 + ".value='" + val1 + "';");
eval("opener.document.all." + field2 + ".value='" + val2 + "';");
eval("opener.document.all." + field3 + ".value='" + val3 + "';");
window.close();
}
</script>
</head>
<body>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="327"><strong><font color="#FF0000" size="2">รายชื่อผู้ป่วย</font></strong></td>
<td width="353"><div align="right"> </div></td>
</tr>
<tr>
<td colspan="2" valign="top"><table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr bgcolor="#FFFFCC">
<td height="25" colspan="4" bgcolor="#CCCCCC"><table width="98%" border="0" cellspacing="0" cellpadding="2">
<form id="form2" name="form2" method="post" action="<? echo"?mode=admin&module=$module"; ?>">
<tr>
<td width="42%"><font size="2">ค้นหาชื่อ - นามสกุล - หมายเลขสมาชิก ผู้ป่วย </font></td>
<td width="58%"><input name="txt" type="text" id="txt" value="<? echo"$txt";?>" size="20" />
<input type="submit" name="Submit2" value="ค้นหา" style="width=80"></td>
</tr>
</form>
</table></td>
</tr>
<tr bgcolor="#FFFFCC">
<td width="91" height="22" bgcolor="#6699FF"><div align="center"><strong><font color="#FFFFFF" size="2">รหัสสมาชิก</font></strong></div></td>
<td width="221" bgcolor="#6699FF"><strong><font color="#FFFFFF" size="2">ชื่อ </font></strong></td>
<td width="130" bgcolor="#6699FF"><strong><font color="#FFFFFF" size="2">นามสกุล </font></strong></td>
<td width="137" bgcolor="#6699FF"><strong><font color="#FFFFFF" size="2">เบอร์โทรศัพท์</font></strong></td>
</tr>
<?
$uSQL="select * from pro_customer order by cs_id desc";
if($txt!="") { $uSQL="select * from pro_customer where cs_name like '%$txt%' or cs_lastname like '%$txt%' or cs_id like '%$txt%' order by cs_id desc"; }
$uQRY = mysql_db_query($dbname, $uSQL);
while($uRS = mysql_fetch_object($uQRY)) {
$i=$i+1;
$cs_id = $uRS -> cs_id;
$cs_pre = $uRS -> cs_pre;
$cs_name = $uRS -> cs_name;
$cs_lastname = $uRS -> cs_lastname;
$cs_address= $uRS -> cs_address;
$cs_pono = $uRS -> cs_pono;
$cs_tel = $uRS -> cs_tel;
$cs_note = $uRS -> cs_note;
$links = "<a href=\"#\" onClick=\"sendToForm('$cs_name','$f1','$cs_id','$f2','$cs_lastname','$f3');\">";
?>
<tr>
<td><div align="center"><font size="2">
<? echo"$links "."CN".get_number($cs_id,6)."</a>"; ?>
</font></div></td>
<td><font size="2"><? echo"$links $cs_pre</a>"; ?><? echo"$links $cs_name</a>"; ?></font></td>
<td><font size="2"><? echo"$links $cs_lastname</a>"; ?></font></td>
<td><font size="2"><? echo"$links $cs_tel</a>"; ?></font></td>
</tr>
<tr>
<td height="1" colspan="4" bgcolor="#CCCCCC"></td>
</tr>
<? } ?>
</table></td>
</tr>
</table>
</body>
</html>
สอบถามครับ จากโค๊ดด้านบน ผมมีติดปัญหาตรง เวลากดค้นหาแล้วไม่สามารถกด links ไปที่ฟอร์มได้ครับ
แต่ถ้าไม่กดค้นหา สามารถกด link ไปที่ฟอร์มได้ครับ
ขอบคุณครับ
Tag : PHP, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2015-08-12 11:56:03 |
By :
jambon2499 |
View :
644 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ภาพหน้าค้นหาครับ
|
|
|
|
|
Date :
2015-08-12 12:00:34 |
By :
jambon2499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ได้แล้วครับผม
Code (PHP)
<form id="form2" name="form2" method="post" action="<? echo"?mode=admin&module=$module"; ?>">
แก้เป็น
Code (PHP)
<form id="form2" name="form2" method="post" action="">
|
|
|
|
|
Date :
2015-08-12 13:56:52 |
By :
jambon2499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|