การ Search จาก ListMenu ให้ ListMenu เป็นตัวเลือกตารางใน MySQL
ถ้าจะให้ง่ายสำหรับมือใหม่ก็
$year=$_POST['ตัวแปรที่ส่งมา'];
$sql="select*from tb where ฟิลล์ที่เก็บข้อมูล=$year";
Date :
2010-07-20 23:27:15
By :
iieszz
นี่คือโค๊ดทั้งหมดนะครับ
ส่วน DB จะเป็น
ชื่อ dbyear
ตารางในนั้นคือ 2549 2550 2551 2552 และในตางรางจะมี ฟิลด์ A ถึง H ผมตั้งให้มันค้นหาได้ทั้งหมดแล้วแต่ผมต้องสร้างไฟล์แบบนี้ไว้ 4 ไฟล์ เพื่อจะให้มันค้นหา แต่ละตาราง ใน DB แต่ที่นี้ผมต้องการสร้าง ไฟล์ PHP เพียง 1 ไฟล์ แล้วเลือก ตาราง จาก ListMenu ไม่ต้องสร้างไฟล์ หลาย ๆ ไฟล์
Code (PHP)
<html>
<head>
<title>ListMenu</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style2 {
color: #0033FF;
font-weight: bold;
}
.style6 {
color: #FFFF00;
font-weight: bold;
}
.style8 {
color: #CC00FF;
font-weight: bold;
}
a:link {
color: #CCCCCC;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #CCCCCC;
}
a:hover {
text-decoration: underline;
color: #CCCCCC;
}
a:active {
text-decoration: none;
color: #CCCCCC;
}
-->
</style>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="987" border="0" align="center">
<!--DWLayoutTable-->
<tr>
<th width="981" height="37" align="center" valign="middle" bgcolor="#000066"><span class="style1"><strong>YEAR</strong></span></th>
</tr>
<tr>
<th height="26" valign="top" bgcolor="#CCCCCC"><span class="style2">ค้นหา</span><span class="style6"></span>
<label>
<select name="year">
<option value="#">--------เลือกปี-------</option>
<option>พ.ศ. 2552</option> // ตรงนี้เราจะใส่ค่ายังไงเพื่อให้เลือก ตาราง 2552 และปีอื่นด้วย
<option>พ.ศ. 2551</option>
<option>พ.ศ. 2550</option>
<option>พ.ศ. 2549</option>
</select>
</label>
<input name="search" type="text" id="search" value="<?=$_GET["search"];?>" size="40">
<input type="submit" value="ค้นหารายชื่อ"></th>
</tr>
</table>
</form>
<div align="center">
<?
if($_GET["search"] != "")
{
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("dbyear");
mysql_query("SET NAMES UTF8");
// และตรงเลือกตารางเราจะใส่ค่ายังไงครับ
$strSQL = "SELECT * FROM dss49 WHERE (B LIKE '%".$_GET["search"]."%' or C LIKE '%".$_GET["search"]."%' or D LIKE '%".$_GET["search"]."%' or E LIKE '%".$_GET["search"]."%' or F LIKE '%".$_GET["search"]."%' or G LIKE '%".$_GET["search"]."%' or H LIKE '%".$_GET["search"]."%' )";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 70; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by A ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<span class="style8">ประจำปี ๒๕๔๙</span></div>
<table width="983" border="0" align="center">
<!--DWLayoutTable-->
<tr>
<th width="141" bgcolor="#000066"> <div align="center" class="style1">A</div></th>
<th width="162" bgcolor="#000066"> <div align="center" class="style1">B </div></th>
<th width="180" bgcolor="#000066"> <div align="center" class="style1">C</div></th>
<th width="46" bgcolor="#000066"><span class="style1">Dุ</span></th>
<th width="179" bgcolor="#000066"> <div align="center" class="style1">E </div></th>
<th width="166" bgcolor="#000066"> <div align="center" class="style1">F </div></th>
<th width="79" bgcolor="#000066"> <div align="center" class="style1">H</div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td bgcolor="#CCCCCC"><div align="center">
<?=$objResult["A"];?>
</div></td>
<td bgcolor="#CCCCCC"><div align="center">
<?=$objResult["B"];?>
</div></td>
<td bgcolor="#CCCCCC"><div align="center">
<?=$objResult["C"];?>
</div></td>
<td bgcolor="#CCCCCC"><div align="center">
<?=$objResult["D"];?>
</div></td>
<td bgcolor="#CCCCCC"><div align="center">
<?=$objResult["E"];?>
</div></td>
<td align="right" bgcolor="#CCCCCC"><div align="center">
<?=$objResult["F"];?>
</div></td>
<td align="right" bgcolor="#CCCCCC"><div align="center">
<?=$objResult["H"];?>
</div></td>
</tr>
<?
}
?>
</table>
<br>
ทั้งหมด <?= $Num_Rows;?> คน : <?=$Num_Pages;?> หน้า :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&search=$_GET[search]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&search=$_GET[search]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&search=$_GET[search]'>Next>></a> ";
}
mysql_close($objConnect);
}
?>
<table width="986" height="113" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutDefaultTable-->
<tr>
<td width="986" height="69"> </td>
</tr>
</table>
</body>
</html>
Date :
2010-07-21 00:56:31
By :
chantos
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<?
mysql_connect("localhost","root","root") or die(mysql_error());
mysql_select_db("mydatabase");
?>
<body>
<form action="phpLlistmenuDatebase2.php" method="post" name="form1">
List Menu<br>
<select name="lmName1">
<option value=""><-- Please Select Item --></option>
<?
$strSQL = "SELECT * FROM customer ORDER BY CustomerID ASC";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResuut["CustomerID"];?>"><?=$objResuut["CustomerID"]." - ".$objResuut["Name"];?></option>
<?
}
?>
</select>
<input name="btnSubmit" type="submit" value="Submit">
</form>
</body>
</html>
<?
mysql_close();
?>
Go to : PHP MySQL DropDownList / Listmenu / ListBox
การค้นหาจาก DropDownList
Go to : php กับ mysql อยากให้ช่วยยกตัวอย่างคำสั่ง Search ค้นหาโดยใช้ listbox/listmenu/dropdownlistให้หน่อยครับ
Date :
2011-08-15 13:05:28
By :
webmaster
ถ้าผมค้นหาด้วย DropDownList / Listmenu แล้วจะให้มัน selected="selected" ค่าที่เรากดไป ต้องเขียนโค้ดยังไงครับ
Date :
2014-03-16 09:44:53
By :
pramote20
Load balance : Server 05