|
|
|
อีกนิดจะได้แล้ว ครับ เรื่อง ค้นหาไม่ต้องสนใจ พิมพ์เล็ก พิมพ์ใหญ่ |
|
|
|
|
|
|
|
strtolower
|
|
|
|
|
Date :
2016-10-18 18:00:41 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ประเด็นคือ เวลาคีย์ลง Texbox แล้วข้อความที่เป้นพิมพ์ใหญ่หาไม่เจอนะครับ
|
|
|
|
|
Date :
2016-10-19 09:10:08 |
By :
pissanu8970 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ล่ะครับ ขอบคุณครับ
Code (PHP)
<?php
$objOpen = opendir("Drawing");
$len=strlen($_POST["search"]);
//echo $len;
while (($file = readdir($objOpen)) !== false)
{
//for($i=0;$i<(strlen($file)-($len-1));$i++)
if ($file != "." && $file != "..")
{
$check=strstr(strtolower($file), strtolower($_POST["search"]),false);
//echo $check;
if($check!=NULL)
echo "<a href='Drawing/".$file."'>$file</a><br>";
/*echo"ตัวพิมพ์เล็กจะได้ ".strtolower($text)."<br>";*/
}
}
?>
</td>
<td width="496" align="left">
<?php
$objOpen = opendir("WI");
$len=strlen($_POST["search"]);
//echo $len;
while (($file = readdir($objOpen)) !== false)
{
//for($i=0;$i<(strlen($file)-($len-1));$i++)
if ($file != "." && $file != "..")
{
$check=strstr(strtolower($file), strtolower($_POST["search"]),false);
//echo $check;
if($check!=NULL)
echo "<a href='WI/".$file."'>$file</a><br>";
/*echo "<a href='WI/".$file."'>$file</a><br>";*/
}
}
?>
|
|
|
|
|
Date :
2016-10-19 09:23:08 |
By :
pissanu8970 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|