|
|
|
ขอความช่วยเหลือเรื่องค้นหาครับ..คือที่เคยทำจะเป็นการค้นหารวมๆ |
|
|
|
|
|
|
|
หมายถึงค้นหาข้อมูลการจองจากEmailและรหัสผ่านช่ายหรือป่าวค่ะ
|
|
|
|
|
Date :
2010-01-20 13:30:10 |
By :
LuckyStar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$check="SELECT password,email FROM $table WHERE password='$password' AND email='$Email' ";
$ncheck=mysql_db_query($dbname,$check);
if(mysql_num_rows($ncheck)<=0){
//เงื่อนไขหาก email หรือ รหัสผ่านไม่ถูกต้อ
}else{
//เงื่อนไข หากข้อมูลถูกต้อ
}
?>
|
|
|
|
|
Date :
2010-01-20 13:34:08 |
By :
yomaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะให้ขึ้นแบบนี้ครับ
พอเรา อีเมล mm รหัส mm แล้วค้นเจอ
|
|
|
|
|
Date :
2010-01-20 13:48:34 |
By :
T&Parita |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขออญาติอัปขึ้น
|
|
|
|
|
Date :
2010-01-20 14:45:13 |
By :
T&Parita |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยดูหน่อยเร็ว
|
|
|
|
|
Date :
2010-01-20 15:55:03 |
By :
..... |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
test.html
<html>
<head>
<title>Un title page</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="test2.php"> //ผมกำหนดให้ส่งข้อมูลที่ค้นหามาที่ไฟล์ Search นะครับ
<table border="0" cellspacing="5" cellpadding="0">
<tr>
<td>ค้นหาข้อมูล : </td>
<td>
<input type="text" name="search">
</td>
<td>
<input type="submit" name="Submit" value="ค้นหา">
</td>
</tr>
</table>
</form>
</body>
</html>
Code (PHP)
test2.php
<html>
<title>test2</title>
<body bgcolor="#ffffff">
<table border=0 align=center width=100%>
<tr><td align=center><FONT SIZE="" COLOR="#FF3300">
<h1><br><font size="3" face="mS Sans Serif, " color=#3399CC>สถานะการจอง</font></h1>
</font></td></tr>
<tr><td align=left><font color=#666699>ข้อมูลการจอง<font color=#993399><b></td></tr>
</table>
<?
$hostname = "localhost";
$user = "root";
$password = "1234";
$dbname = "rent";
$tblname = "tbl_rent";
$field_search = "password";
$link=mysql_connect($host, $user, $password);
mysql_query("Set names tis620");
mysql_select_db("$dbname");
$sql = "select * from $tblname where $field_search like '%$search%'";
$result=mysql_query($sql, $link);
echo"<table border align=center width=100%>";
echo"<tr align=center bgcolor=#4697D2>";
echo"<td><font color=#FFFFFF><B>ลำดับที่</B></font>";
echo"<td><font color=#FFFFFF><B>โซน</B></font>";
echo"<td><font color=#FFFFFF><B>ร้าน</B></font>";
echo"<td><font color=#FFFFFF><B>ชื่อ-สกุล</B></font>";
echo"<td><font color=#FFFFFF><B>รหัสผ่าน</B></font>";
echo"<td><font color=#FFFFFF><B>อีเมล</B></font>";
echo"<td><font color=#FFFFFF><B>เบอร์โทร</B></font>";
echo"<td><font color=#FFFFFF><B>ที่อยู่</B></font>";
echo"<td><font color=#FFFFFF><B>ราคา</B></font>";
echo"</tr>";
$i=1;
while ($arr=mysql_fetch_array($result))
{
echo"<tr>";
echo"<td align=center><font size=2>".$i."</td>";
//echo"<td><font size=2>".$arr['id']."</td>";
echo"<td><font size=2>".$arr['id_zone']."</a></td>";
echo"<td><center><font size=2>".$arr['Block']."</td>";
echo"<td><center><font size=2>".$arr['Cname']."</td>";
echo"<td><center><font size=2>".$arr['password']."</td>";
echo"<td><center><font size=2>".$arr['Email']."</td>";
echo"<td><center><font size=2>".$arr['Telephone']."</td>";
echo"<td><center><font size=2>".$arr['Address']."</td>";
echo"<td><center><font size=2>".$arr['Price']."</td>";
echo"</tr>";
$i++;
}
echo"</table>";
?>
</BODY>
</HTML>
ปัญหา คือว่าพอผมกดปุ่มโดยไม่กรอกมันก็โช ผมไม่อยากให้โชถ้ายังไม่กรอก
พอมีวิธีมัยครับช่วยบอกด้วย
|
|
|
|
|
Date :
2010-01-20 18:09:45 |
By :
T&Parita |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|