|
|
|
ช่วยดูให้หน่อยคับ คือมีปัญาว่า...ค้นหาคำที่ต้องการแล้วแสดงขึ้นมาอยากจะให้เปลี่ยนสีให้เป็นสีแดงแสดงว่าคำที่ค้นหานั้นอยู่ตรงไหน |
|
|
|
|
|
|
|
<?php
$pattern = '(>[^<]*)('. quotemeta($_GET['search']) .')';
$replacement = '\\1<span class="search">\\2</span>';
$body = eregi_replace($pattern, $replacement, $body);
?>
|
|
|
|
|
Date :
26 มี.ค. 2551 14:10:49 |
By :
ผู้มาเยือน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค๊ตที่ให้มาใช้ไม่ได้อะคับ คือต้องการให้คำที่ค้นหาพบแสดงเป็นสีแดงคับ เช่นค้นหาคำว่า นาย ผลออกมาคำว่า นาย จะเป็นสีแดงคับ
|
|
|
|
|
Date :
26 มี.ค. 2551 14:36:12 |
By :
pchome |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
$search_name=$_POST['search_name'];
?>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<body>
<form name="form1" method="post" action="">
กรุณากรอกชื่อที่ต้องการค้นหา
<input type="text" name="search_name" value="<?=$search_name;?>">
<input type="submit" name="Submit" value="Search">
</form>
<?
if(empty($search_name))
{
?><hr>
กรุณากรอกข้อมูลด้วยครับ
<?
}
else
{
// สมมตุว่าเป็น $s เป็น text ที่มีคำที่ค้นอยู่ในนั้น
$s='nobita doraemon nobita doraemon';
$search_name=get_magic_quotes_gpc()==false?addslashes($search_name):$search_name;
$pat="/($search_name)/";
echo $pat;
$s2=preg_replace($pat, "<font color=red>\\1</font>", $s);
echo '<hr>';
echo $s2;
}
?>
</body>
</html>
|
|
|
|
|
Date :
26 มี.ค. 2551 18:18:11 |
By :
dragon_html |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยดูให้ผมด้วยครับ โค๊ตนี้ครับ อยากจะให้ keyword ทีหา ในแต่ละ fields แสดงเป็นสีส้มด้วยอะครับ ดูของเค้าแล้วงง มันไม่เหมือนกับของผม ต้องแก้หรือเพิ่มตรงจุดไหนครับ
<form name="form1" method="post" action="search_all.php">
<div align="center">
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#336699">
<tr>
<td width="120" bgcolor="FFE0A3"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
ต้องการค้นหา : </font></td>
<td width="152" align="center" bgcolor="#FFFFFF"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<input type="text" name="keyword" value="<? echo"$keyword"; ?>">
</font></td>
<td width="120" bgcolor="FFE0A3"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
จาก :</font></td>
<td width="105" align="center" bgcolor="#FFFFFF"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<select name="fields">
<option value="<?echo "$fields"; ?>"> <?echo "$fields"; ?></option>
<option value="in_number">เลขที่รับ</option>
<option value="in_date">วันที่รับ</option>
<option value="book_number">เลขที่หนังสือ</option>
<option value="book_date">ลงวันที่</option>
<option value="book_format">แบบฟอร์ม</option>
<option value="speed">ชั้นความเร็ว</option>
<option value="topic">ชื่อเรื่อง</option>
<option value="book_from">จาก</option>
<option value="book_to">ถึง</option>
<option value="book_run">การดำเนินการ</option>
<option value="book_comment">หมายเหตุ</option>
</select>
</font></td>
<td align="center" bgcolor="FFE0A3"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<input type="submit" name="Submit" value="ค้นหา">
</font></td>
</tr>
<tr bgcolor="#FFCC66">
<td colspan="5"> </td>
</tr>
</table>
</div>
</form></td>
</tr>
</table></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<?
if (empty($keyword) or empty($fields))
{
echo"กรุณาเลือกรายการค้นหา";
exit();
}
else
{
Require('dbconnect.php');
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); /* ทำการเลือกฐานข้อมูลก่อน */
$sql="SELECT * FROM $tb where $fields like '%$keyword%'";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
if(empty($num_rows)) /* ตรวจสอบว่ามีอยู่หรือยัง */
{
echo"<center><br>ไม่พบข้อมูล <b>$keyword</b> จากตาราง <b>$fields <b> </center>";
exit();
}
else
{
?>
<? echo " แสดงรายการค้นหา <b>$keyword</b> จาก <b>$fields</b> พบ <b>$num_rows</b> รายการ "; ?>
</font></td>
</tr>
</table>
<tr>
<td colspan="6" bgcolor="#FF9900"><div align="center">
<div align="center"></div>
<table width="100%" border="0" cellpadding="0" cellspacing="1">
<tr align="center" bgcolor="4B98E6">
<td width="85" height="25" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">วันที่รับ</font></strong></td>
<td width="70" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">เลขที่รับ</font></strong></td>
<td width="100" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">เลขที่หนังสือ</font></strong></td>
<td width="85" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">ลงวันที่</font></strong></td>
<td background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">ชื่อเรื่อง</font></strong></td>
<td width="85" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">กาปฏิบัติ</font></strong></td>
<td width="85" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">หมายเหตุ</font></strong></td>
<td width="30" background="images/bg2.gif"><strong><font color="#FFFFFF" size="4" face="AngsanaUPC, BrowalliaUPC, CordiaUPC">ดู</font></strong></td>
</tr>
</table>
<font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$id=$result[id];
$in_number=$result[in_number];
$in_date=$result[in_date];
$book_number=$result[book_number];
$book_date=$result[book_date];
$book_format=$result[book_format];
$secret=$result[secret];
$speed=$result[speed];
$topic=$result[topic];
$book_from=$result[book_from];
$book_to=$result[book_to];
$book_run=$result[book_run];
$book_comment=$result[book_comment];
if($bg=="FFE0A3"){ $bg="D8ECFF";}else{ $bg="FFE0A3";}
?>
</font>
<table width="100%" border="0" cellpadding="0" cellspacing="1">
<tr bgcolor="<? echo $bg;?>">
<td width="85" height="25" align="center"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif"><?echo"$in_date";?></font></td>
<td width="70" align="center"><font color="#FF0000" size="2" face="MS Sans Serif, Tahoma, sans-serif"><?echo"$in_number";?></font></td>
<td width="100"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<?echo"$book_number";?></font></td>
<td width="85" align="center"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif"><?echo"$book_date";?></font></td>
<td><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<?echo"$topic";?></font></td>
<td width="85"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<?echo"$book_run";?></font></td>
<td width="85" align="center"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif"><?echo"$book_comment";?></font></td>
<td width="30" align="center"><font color="#009933" size="2" face="MS Sans Serif, Tahoma, sans-serif"><a href="#" onClick="window.open('info_details.php?flag=edit&id=<?echo"$id"; ?>','mm','width=650,height=370')"><img src="images/bt_view.gif" alt="ดูรายละเอียด" width="20" height="20" border="0" align="absmiddle"></a></font></td>
</tr>
</table>
<font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">
<?
$a++;
}
}
}
?>
</font>
</div></td>
</tr>
|
|
|
|
|
Date :
26 มี.ค. 2551 20:31:44 |
By :
E2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|