|
|
|
อยากขอแนวทาง ทำปุ่ม Search หาประเด็นหลัก โดย คัดจาก กลุ่มแผนกอีกที โดยกลุ่มดึงข้อมูลจาก Database |
|
|
|
|
|
|
|
Code (PHP)
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<form name="frm<?=$i;?>" method="post" action="<?=$_SERVER['PHP_SELF'];?>" enctype="multipart/form-data">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="68%">แผนก
<select name="menu1" class="txtbox" onChange="MM_jumpMenu('parent',this,0)">
<option value="<?=$_SERVER['PHP_SELF'];?>">ทั้งหมด</option>
<?
//=========== แสดงหมวดหมู่
$sql_group = "select * from member order by Email asc";
$strSQL = "SELECT * FROM risks WHERE (main LIKE '%".$_GET["txtKeyword"]."%' or NAME LIKE '%".$_GET["txtKeyword"]."%' )";
$dbquery_group = mysql_query($sql_group);
$num_rows_group = mysql_num_rows($dbquery_group);
mysql_query("SET NAMES TIS620");
while ($result = mysql_fetch_array($dbquery_group))
{
if($_GET["Email"] == $result["Email"])
{
$sel="selected";
}
else
{
$sel="";
}
?>
<option value="<?=$_SERVER['PHP_SELF'];?>?Email=<?=$result["Email"];?>" <?=$sel;?>><?=$result["Name"];?></option>
<?
}
?>
</select>
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"</form>
กด search แล้วไม่ไปค่ะ ช่วยดู code หน่อยค่ะ
|
|
|
|
|
Date :
2011-08-24 17:23:21 |
By :
ayumi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำไมมี form ตั้ง 2 อัน
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<form name="frm<?=$i;?>" method="post" action="<?=$_SERVER['PHP_SELF'];?>" enctype="multipart/form-data">
|
|
|
|
|
Date :
2011-08-24 18:21:37 |
By :
- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="submit" value="Search"/></form>
เช็คดีๆ ครับ เปิดปิดผิดพลาด มันก็อาจจะดื้อไม่ทำงานให้นะครับ เช็คเหมือนข้างบนบอกด้วย
|
|
|
|
|
Date :
2011-08-24 19:36:56 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|