|
|
|
ช่วยด้วยครับการดึงข้อมูลจากรายการ listmenu ออกมาแสดง |
|
|
|
|
|
|
|
Code (PHP)
$strSQL = "SELECT * FROM member WHERE ('%".$_GET["groupID"]."%' ) ";
คุณจะ WHERE อะไรครับ WHERE GroupID = 'xxx' เหรอครับ
|
|
|
|
|
Date :
2011-07-04 16:04:24 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เคยเขียน SQL มาป่าวคับ "WHERE" ลองไปหาอ่านดูนะ
|
|
|
|
|
Date :
2011-07-04 16:13:21 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WHERE GroupID = 'xxx'
ตรงหลัง WHERE อยากระบุให้เป็นค่าฟิล status= user ของ table1 ครับ
เช่น GroupID1 = user1
GroupID 2= user2
xxxx3=xxxx3
สมาชิกสามารถมองเห็นเฉพาะกลุ่มของตนเอง
|
ประวัติการแก้ไข 2011-07-05 11:05:07
|
|
|
|
Date :
2011-07-05 10:47:54 |
By :
sbruang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Go to : SQL WHERE
|
|
|
|
|
Date :
2011-07-05 11:26:18 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูฐานข้อมูลที่เกี่ยวข้องหน่อยครับ
Code (PHP)
<?php
include("config.inc.php");
conndb();
$strSQL = "SELECT * FROM member";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th><p>
<label for="group">àÅ×Í¡¡ÅØèÁ</label>
<select type="hidden" name="groupID" value="<?=$groupID?>" style="width:200px">
<option value="">- Choose -</option>
<?
$sql="select * from groupdep order by groupID ASC";
$dbquery=mysql_db_query($db,$sql);
while($result=mysql_fetch_array($dbquery)){
if($groupID == $result[groupID]){ //à¾×èÍãËé áÊ´§ $groupID ·ÕèÊ觤èÒÁÒãËé
?>
<option value="<?=$result[groupID];?>" selected="selected">
<?=$result[groupName];?>
</option>
<?
}else{?>
<option value="<?=$result[groupID];?>">
<?=$result[groupName];?>
</option>
<?
} }
?>
</select>
</p></th>
</tr>
</table>
</form>
<?
if($_GET["groupID"] != "")
{
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("pisdb");
//mysql_db_query($db,"SET NAMES utf8");
// Search By Name or Email
$strSQL = "SELECT * FROM member WHERE groupID = '$_GET[groupID]' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="205" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["id"];?></div></td>
<td><?=$objResult["fname"];?></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
}
?>
</body>
</html>
|
|
|
|
|
Date :
2011-07-06 14:35:37 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|