Học lập trình thiết kế web trên các ngôn ngữ PHP & Mysql, ASP.net. khóa học thiết kế web trên drupal, wordpress dành cho người đi làm, những ai đam mê về ngành thiết kế web
1
2
3
4
5
6
|
<div>
<h2>TÌM KIẾM THEO TÊN THÀNH VIÊN</h2>
<form name="timkiem" action="xulytimkiem.php" method="post">
<input type="text" name="user" value="" size="25px" /><input type="submit" name="ok" value="Tìm Kiếm" />
</form>
</div>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
*{
margin:0 auto;
}
div{
width:400px;
height:100px;
background:#CCC;
margin-top:50px;
text-align:center;
}
h2{
font-size:14px;
padding-top:10px;
}
input{
margin-top:20px;
}
|
1
2
3
4
5
6
7
8
9
|
<?php
if(isset($_POST['ok'])){
if($_POST['user']==""){
echo "Vui lòng nhập từ khóa tìm kiếm!";
}else{
$user=$_POST['user'];
}
}
?>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
if($user){
$conn=mysql_connect("localhost","root","") or die("can't connect this database");
mysql_select_db("thanhvien",$conn);
$sql="select * from danhsach where user LIKE '%$user%'";
$query=mysql_query($sql);
if(mysql_num_rows($query)!=""){
$stt=1;
while($row=mysql_fetch_array($query)){
$stt++;
echo "<tr>";
echo "<td>".$stt."</td>";
echo "<td>".$row['user']."</td>";
echo "<td>".$row['pass']."</td>";
echo "<td>".$row['email']."</td>";
echo "<td>".$row['address']."</td>";
echo "</tr>";
}
}else{
echo "<tr><td colspan='4' align='center'>Chưa có thành viên nào</td></tr>";
}
}
?>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<table align="center" width="500" border="0">
<tr>
<td class="title">Stt</td>
<td class="title">User</td>
<td class="title">Email</td>
<td class="title">Address</td>
</tr>
<?php
if(isset($_POST['ok'])){
if($_POST['user']==""){
echo "Vui lòng nhập từ khóa tìm kiếm!";
}else{
$user=$_POST['user'];
}
}
if($user){
$conn=mysql_connect("localhost","root","") or die("can't connect this database");
mysql_select_db("thanhvien",$conn);
$sql="select * from danhsach where user LIKE '%$user%'";
$query=mysql_query($sql);
if(mysql_num_rows($query)!=""){
$stt=1;
while($row=mysql_fetch_array($query)){
$stt++;
echo "<tr>";
echo "<td>".$stt."</td>";
echo "<td>".$row['user']."</td>";
echo "<td>".$row['pass']."</td>";
echo "<td>".$row['email']."</td>";
echo "<td>".$row['address']."</td>";
echo "</tr>";
}
}else{
echo "<tr><td colspan='4' align='center'>Chưa có thành viên nào</td></tr>";
}
}
?>
</table>
|
1
|
$sql="select * from danhsach where user='$user'";
|
0 nhận xét:
Đăng nhận xét