|
|
|
การค้นหาข้อมูล,จะส่งค่าอย่างไรให้ไปทำการค้นหาข้อมูลทั้งหมด โดยใช้ <select> |
|
|
|
|
|
|
|
ใช้ if ดักเอาครับ
Code (PHP)
<select name="type" id="type">
<option value='0'>---------------กรุณาเลือกประเภท----------------</option>
<?
include "connect.php";
$sql="select type_id,type_name from tbl_type ";
$result =mysql_db_query($dbname,$sql) ;
while ($row=mysql_fetch_array($result)){
?>
<option value="<?=$row['type_id']?>">
<?=$row['type_name']?>
</option>
<?
}
?>
</select>
<?php
if($_POST[type]=='0'){
$sql="select * from tb_name";
}else{
//เงื่อนไขต่อไป
}
?>
|
|
|
|
|
Date :
2012-02-17 01:51:39 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$strSQL = "SELECT * FROM table WHERE 1 ";
if($_POST["txt1"] != "")
{
$strSQL .= " AND F1 = '".$_POST["txt1"]."' ";
}
if($_POST["txt2"] != "")
{
$strSQL .= " AND F2 = '".$_POST["txt2"]."' ";
}
?>
|
|
|
|
|
Date :
2012-02-17 06:33:57 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทุกคำตอบสำหรับท่านทั้งสองครับผม
|
|
|
|
|
Date :
2012-02-17 08:46:49 |
By :
auikung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงื่อไขแรกผ่านแล้วพอจะใส่เงื่อนไขที่สองนี้ ต้องใช้ and รึป่าว ครับ
|
|
|
|
|
Date :
2012-02-17 13:30:02 |
By :
auikung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|