|
|
|
ช่วยหน่อยครับ รับค่าจาก textbox เพื่อเรียกดูฐานข้อมูลที่ต้องการ |
|
|
|
|
|
|
|
ajax อ่ะครับลองศึกษาดูผมก็กำลังศึกษาอยู่เหมือนกัน
|
|
|
|
|
Date :
2009-09-11 10:46:22 |
By :
somparn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ ปุ่ม submit ด้วยป่าว หรือ ว่า พิมพ์เสร็จ กด Enter แล้ว ข้อมูลขึ้นมา
|
|
|
|
|
Date :
2009-09-11 13:35:55 |
By :
nilas |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ submit ด้วยครับ พอกดปั๊บ field ที่เราต้องการเรียก มันจะขึ้นมาทันทีเลยครับ
จะบอกว่า ตอนนี้ผมทำกับปุ่ม radio ได้แล้วว่า เลือกอันไหนก็ให้แสดงข้อมูลอันนั้นครับ
แต่ปัญหาว่า มันจะต้องเลือกปุ่ม radio ด้วย ซึ่งไม่เลือกข้อมูลจะผิดพลาด แต่ถ้าเลือก radio3 จะต้องพิมพ์ข้อมูลที่ต้องการแสดงด้วยครับ
<html>
<body>
<div align="left">
<table width="770" height="23" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#336699">
<tr>
<th width="95" scope="col"><span class="style8">เช็คเงื่อนไข</span></th>
</tr>
</table>
<div align="center">
<?
$conn=mysql_connect("localhost","root","root");
mysql_select_db("test",$conn);
mysql_query("SET NAMES 'TIS620'");
?>
</div>
</div>
<form method="post" action="search.php">
<table width="470" border="0" align="center" cellpadding="0" cellspacing="0" background="image/000650.png">
<tr>
<td width="20" scope="col"><input type="radio" name="option" id="radio2" value="1" ></td>
<td width="680" scope="col"><div align="left" class="style3">แสดงรายชื่อและนามสกุลของสมาชิกทั้งหมด</div></td>
</tr>
<tr>
<td><input type="radio" name="option" id="radio3" value="2"></td>
<td class="style3">แสดงรายชื่อการ์ตูนภายในร้านได้</td>
</tr>
<tr>
<td><input type="radio" name="option" id="radio4" value="3"></td>
<td class="style3">ค้นหารายชื่อสมาชิกที่ค้างส่งหนังสือ พร้อมทั้งแสดงรายชื่อการ์ตูนที่ยังไม่ได้คืนด้วย</td>
</tr>
<tr>
<td> </td>
<td><span class="style5">ชื่อสมาชิก :</span>
<input name="text1" type="text" class="style3" size="20" maxlength="4"></td>
</tr>
<tr>
<td><input type="radio" name="option" id="radio" value="4"></td>
<td class="style3">ค้นหาการ์ตูน หากมีคนยืมให้แจ้งชื่อของผู้ยืมออกมาด้วย</td>
</tr>
<tr>
<td> </td>
<td><span class="style5">ชื่อการ์ตูน :</span>
<input name="text2" type="text" class="style3" size="20"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" id="submit" value="ค้นหา"></td>
</tr>
</table>
</form>
</body>
</html>
ถ้าไงลองเข้าไปดูที่ www.nuengmongkol.co.th/work ดูนะเพราะอัพโหลดขึ้น serv จริงเลย
และตอนนี้กำลังทำอยู่เลยด้วยแต่ไม่รู้จะใช้คำสั่งอะไร ช่วยหน่อยนะครับ
admin
1234
|
|
|
|
|
Date :
2009-09-11 15:22:22 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็เอา radio3 ออกไปเลยซิครับ แล้วก็รับค่าจาก text1 ไปเลย แล้วค่อย ไปกำหนด เงื่อนในการค้นหาเอานะครับ ถ้า tex้า1 มีค่า
if($_POST['text1']<>""){
$text1=$_POST['text1'];
$condition= where name like '%$text1%';
}
เอาข้อมูลไป query ต่อ
หรือ อีกวิธี คือ เมื่อ มีการป้อนข้อมูลใน textbox ก็สั่งให้ radio3 ถูก selected สั่งด้วย javascript
|
|
|
|
|
Date :
2009-09-11 16:09:10 |
By :
nilas |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถ้าต้องการหาแบบนี้ละคับ
สมมุติว่าผมเลือกปี 2544 จาก List/Menu ให้มันดึงข้อมูลจากฐานข้อมูลมาแสดง ในระหว่างปี 2544-2547 ต้องเขียนยังไงบ้างคับ งง
|
|
|
|
|
Date :
2010-10-01 05:34:53 |
By :
งง? |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้คำสั่ง between ครับ
|
|
|
|
|
Date :
2010-10-01 08:36:16 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|