Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > การค้นหาข้อมุลครับ 3 ตาราง ตอนนี้ทำได้ 2 ตารางแล้ว แต่ตารางที่ 3 ดึงมาจากฐานข้อมูลครับ เลยทำเงื่อนไขในการค้นหาไม่ถูกครับ ช่วยหน่อยครับ



 

การค้นหาข้อมุลครับ 3 ตาราง ตอนนี้ทำได้ 2 ตารางแล้ว แต่ตารางที่ 3 ดึงมาจากฐานข้อมูลครับ เลยทำเงื่อนไขในการค้นหาไม่ถูกครับ ช่วยหน่อยครับ

 



Topic : 061511



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์




เหลือ ที่ดึงมาจากฐานข้อมูลครับ ประเภทการเช่าหอพักครับ

ด

Code (PHP)
<html>  
<head>  
<title>ค้นหา</title>
<style type="text/css">
th {font-family:sans-serif;
font-size:12px;
}
.style1 {color: #990000}
</style>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>  
<script type="text/javascript">  
google.load("jquery", "1.3.2");  
</script> 
<script type="text/javascript">
function get_search (p, t){
	var p = $("#price").val();
	var t = $("#txtKeyword").val();
	
	if(p.length==0 && t.length==0){
		alert('โปรดเลือกราคาหรือชื่อหอพักที่ต้องการค้นหา');
	}	
	
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>  
<body>
<center><table width="988" border="0" bgcolor="#00FFCC">
  <tr>
    <td align="center"><p>
      <?  include "headder.php"; 
include "menu.php"; ?>
          </p>
      <center>
      </center>
      <form name="frmSearch" method="post" action="<?=$_SERVER['PHP_SELF']?>" onSubmit="get_search (price, txtKeyword)">
        <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <th width="631" bgcolor="#33CCFF"><div align="center">ประเภทการเช่าหอพัก
                <SELECT NAME="ref_id_type_lease">
                <OPTION VALUE="0">เลือกประเภทการเช่าหอพัก</OPTION>
                <?
		 @include "connect.php";
		$sql="select * from tb_type_lease";
		$result=mysql_db_query($db_Name,$sql);
	  	while($rs=mysql_fetch_array($result)) {
			$id_type_lease=$rs[id_type_lease];
			$name_type_lease=$rs[name_type_lease];
			echo "<OPTION VALUE='$id_type_lease'>$name_type_lease</OPTION>";
		}
	  ?>
              </SELECT>
              ราคาห้องพัก
              <select name="price" id="price">
                      <option value="">- เลือกราคา -</option>
                      <option value="1" <? if($price==1){?>selected<? }?>>น้อยกว่า1000</option>
                      <option value="2" <? if($price==2){?>selected<? }?>>1001-1500</option>
                      <option value="3" <? if($price==3){?>selected<? }?>>1501-2000</option>
                      <option value="4" <? if($price==4){?>selected<? }?>>2001-2500</option>
                      <option value="5" <? if($price==5){?>selected<? }?>>2501-3000</option>
                      <option value="6" <? if($price==6){?>selected<? }?>>มากกว่า 3000</option>
                  </select>
              ชื่อหอพัก
              <input name="txtKeyword" style="background-color:#99FF99; color:#000000;"type="text" id="txtKeyword" value="<?=$_POST["txtKeyword"];?>">
              <input name="submit" type="submit" style="background-color:green; color:yellow;"value="Search">
            </div></th>
          </tr>
        </table>
      </form>
      <? @include("connect.php"); ?>
      <? 
if($_REQUEST['price']!=''){  
$price = $_REQUEST['price']; 
switch($price){        
case 1:      
$where = " WHERE price_prd < 1000 ";       
break;     
case 2:     
$where = " WHERE price_prd BETWEEN 1001 AND 1500 ";      
break;      
case 3:      
$where = " WHERE price_prd BETWEEN 1501 AND 2000 ";         
break;    
case 4:    
$where = " WHERE price_prd BETWEEN 2001 AND 2500 ";    
break;     
case 5:       
$where = " WHERE price_prd BETWEEN 2501 AND 3000 ";      
break;      
case 6:       
$where = " WHERE price_prd > 3000 ";       
break;            
} 
} 
if($_REQUEST["txtKeyword"] != ""){      
          
$detail = $_REQUEST["txtKeyword"];            
$where = " WHERE (name_prd LIKE '%".$detail."%') ";    
}  
if($_REQUEST['price']!='' && $_REQUEST["txtKeyword"] != ""){ 
   
		$price = $_REQUEST['price']; 
		$name_prd = $_REQUEST["txtKeyword"];  
		switch($price){     
		case 1:     
		$where = " WHERE price_prd < 1000 OR name_prd LIKE '%".$name_prd."%' ";     
		break;     
		case 2:     
		$where = " WHERE price_prd BETWEEN 1001 AND 1500 OR name_prd LIKE '%".$name_prd."%'";      
		break;     
		case 3:     
		$where = " WHERE price_prd BETWEEN 1501 AND 2000 OR name_prd LIKE '%".$name_prd."%'";        
		break;     
		case 4:      
		$where = " WHERE price_prd BETWEEN 2001 AND 2500 OR name_prd LIKE '%".$name_prd."%'";       
		break;      
		case 5:       
		$where = " WHERE price_prd BETWEEN 2501 AND 3000 OR name_prd LIKE '%".$name_prd."%'";      
		break;       
		case 6:         
		$where = " WHERE price_prd > 3000 OR name_prd LIKE '%".$name_prd."%'";         
		break;             
		}    
} 
 
?>
      <table width="1000" border="0" align="center" cellpadding="0" cellspacing="1">
        <tr>
          <th width="92" align="center" bgcolor="#FF9900"> <div align="center">รหัสหอพัก</div></th>
          <th width="97" align="center" bgcolor="#FF9900"> <div align="center">ชื่อหอพัก </div></th>
          <th width="140" align="center" bgcolor="#FF9900"> <div align="center">ประเภทหอพัก </div></th>
          <th width="83" align="center" bgcolor="#FF9900"> <div align="center">ราคา</div></th>
          <th width="110" align="center" bgcolor="#FF9900"> <div align="center">รูปภาพ </div></th>
          <th width="170" align="center" bgcolor="#FF9900"> <div align="center">รายละเอียด</div></th>
        </tr>
        <?  
if($price!='' || $txtKeyword!=''){
$strSQL  = "SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");   
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page =10;   // Per Page

	$Page = $_GET["Page"];
	if(!$_GET["Page"])
	{
		$Page=1;
	}

	$Prev_Page = $Page-1;
	$Next_Page = $Page+1;

	$Page_Start = (($Per_Page*$Page)-$Per_Page);
	if($Num_Rows<=$Per_Page)
	{
		$Num_Pages =1;
	}
	else if(($Num_Rows % $Per_Page)==0)
	{
		$Num_Pages =($Num_Rows/$Per_Page) ;
	}
	else
	{
		$Num_Pages =($Num_Rows/$Per_Page)+1;
		$Num_Pages = (int)$Num_Pages;
	}

	$strSQL .=" order  by id_prd ASC LIMIT $Page_Start , $Per_Page";
	$objQuery  = mysql_query($strSQL);

$bg = 1;	
while($objResult = mysql_fetch_array($objQuery)) {$bg++;
	if($bg%2==0){
		$bgr = '#99FF99';
	}else{
		$bgr = '#00FFCC';
	}
?>
        <tr bgcolor="<?=$bgr?>">
          <td height="50"><div align="center">
            <?=$objResult["id_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_type"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["price_prd"];?>
          </div></td>
          <td align="right"><div align="center"><img src='photo/<?=$objResult["photo_prd"];?>' width='80' height='60'  /></div></td>
          <td><div align="center">[ <A HREF='search_view.php?id_prd=<?=$objResult["id_prd"];?>'>แสดงรายละเอียด </A>] </div>
              </div></td>
        </tr>
        <? }}?>
      </table>
      <div align="center"><br>
          <div align="center">
            <center>
            </center>
          </div>
        <span class="style1">จำนวนหอพักทั้งหมด</span>
          <?= $Num_Rows;?>
          <span class="style1">หอพัก:หน้า :</span>
          <?
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'><< Back</a> ";
}

for($i=1; $i<=$Num_Pages; $i++){
	if($i != $Page)
	{
		echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>$i</a> ]";
	}
	else
	{
		echo "<b> $i </b>";
	}
}
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>Next>></a> ";
}
//mysql_close($objConnect);
?>
          <center>
            <p></p>
          </center>
      </div>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>
        <? include "fooder.php"?>
        </p></td>
  </tr>
</table></center>
<p>&nbsp;</p>
</body>  
</html>







Tag : PHP, MySQL









ประวัติการแก้ไข
2011-06-10 20:33:17
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-06-10 20:32:38 By : buraratn View : 3190 Reply : 48
 

 

No. 1



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


จอยสองตารางได้แล้ว น่าจะพอเข้าใจ concept มันนะ ลองเอาตารางสามมาจอยดูหรือยัง โดยที่ยังไม่ได้ต้องใส่เงื่อนไขก่อนก็ได้






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 22:06:17 By : PlaKriM
 


 

No. 2



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


Code (PHP)
if($price!='' || $txtKeyword!=''){
$strSQL  = "SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .= " LEFT JOIN tb_type_lease ON tb_product .ref_id_type_lease = tb_type_lease.id_type_lease";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");   
$Num_Rows = mysql_num_rows($objQuery);


อย่างนี้ได้ไหมครับพี่ ไม่แน่ใจว่ามันจอยซ้ำได้ไหมครับ

แล้วข้อมูลที่ name_type_lease ที่ selete ออกมาผมงงว่าจะเอาไปทำยังไงต่อครับ


ประวัติการแก้ไข
2011-06-10 22:26:11
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 22:23:33 By : buraratn
 

 

No. 3



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ผู้รู้รบกวนทีครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 22:54:04 By : buraratn
 


 

No. 4



โพสกระทู้ ( 255 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook

ตอบความคิดเห็นที่ : 2 เขียนโดย : buraratn เมื่อวันที่ 2011-06-10 22:23:33
รายละเอียดของการตอบ ::
บรรทัดที่ 5 คืออะไรครับ ผมงง $where ยกตัวอย่างสักนิสสสว่าจะ where อะไร

ผมมีวิธีทดสอบ sql นะ ลอง echo $strSQL; ออกมาสิครับ แล้ว copy นำ Excute ในโปรแกรมพวกจัดการ mysql เช่น phpmyadmin มันจะมีให้ลองทดสอบอยู่แล้วตรง tab menu sql



ประวัติการแก้ไข
2011-06-10 23:04:19
2011-06-10 23:07:19
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:03:05 By : ppanchai
 


 

No. 5



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


$where เอามาเช็คตรงสวิตเคสข้างล่างครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:05:08 By : buraratn
 


 

No. 6



โพสกระทู้ ( 255 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook

ผมมีวิธีทดสอบ sql นะ ลอง echo $strSQL; ออกมาสิครับ แล้ว copy นำ Excute ในโปรแกรมพวกจัดการ mysql เช่น phpmyadmin มันจะมีให้ลองทดสอบอยู่แล้วตรง tab menu sql
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:07:46 By : ppanchai
 


 

No. 7



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


คือว่าผมเพิ่งหัดเขียนครับและงานชิ้นนี้ก็เป้นเว้บแรกของผมเลยครับ

ไม่มีประสบการเลยครับ ไม่รู้เมื่อไหร่จะเสร็จครับ ตอนนี้ปีหกแล้วครับ 5555555555
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:10:03 By : buraratn
 


 

No. 8



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


มันจอยได้เป็นร้อยครับ ซึ่งคงไม่มีใครจอยเยอะขนาดนั้น

$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
เปลี่ยนเป็น
$objQuery = mysql_query($strSQL) or die (mysql_error() . "<br/>".$strSQL);
จะได้เห็น error
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:18:32 By : PlaKriM
 


 

No. 9



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ที่งงตอนนี้คือไม่รู้จะสร้างเงือนไขข้อมูลที่ดึงออกมายังไงดีครับ
Code (PHP)
                <?
		 @include "connect.php";
		$sql="select * from tb_type_lease";
		$result=mysql_db_query($db_Name,$sql);
	  	while($rs=mysql_fetch_array($result)) {
			$id_type_lease=$rs[id_type_lease];
			$name_type_lease=$rs[name_type_lease];
			echo "<OPTION VALUE='$id_type_lease'>$name_type_lease</OPTION>";
		}
	  ?>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:27:50 By : buraratn
 


 

No. 10



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ตอบความคิดเห็นที่ : 9 เขียนโดย : buraratn เมื่อวันที่ 2011-06-10 23:27:50
รายละเอียดของการตอบ ::
ทำตามที่บอกยังครับ จะได้เห็นว่า join ไม่ได้ยังไง


ปล. คุณรสนิยมดีนะ Sisaket FC คนจังหวัดนี้ มักจะหน้าตาดี
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:31:13 By : PlaKriM
 


 

No. 11



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


จอยที่พี่ว่ามันใช่ตัวนี้ไหมครับ

Code (PHP)
if($price!='' || $txtKeyword!=''){
$strSQL  = "SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .= " LEFT JOIN tb_type_lease ON tb_product .ref_id_type_lease = tb_type_lease.id_type_lease";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");   
$Num_Rows = mysql_num_rows($objQuery);


ปล.ที่ว่าผมก็ไม่แน่ใจครับ ผมว่าจังหวัดใกล้เคียงทางทิศตะวันออกน่าจะดีกว่าครับ ขำๆครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:34:01 By : buraratn
 


 

No. 12



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ใช่ครับ ตรงนี้เปลี่ยนดู
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:37:18 By : PlaKriM
 


 

No. 13



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


เปลี่ยนละครับ มันก็ไม่ได้ error ครับ
ีเด

แต่ยังใช้งานไม่ได้ครับ เพราะยังไม่มีเงื่อนไขครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-10 23:41:56 By : buraratn
 


 

No. 14



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ที่งงคืออันนี้ครับ
Code (PHP)
              <?
 @include "connect.php";
$sql="select * from tb_type_lease";
$result=mysql_db_query($db_Name,$sql);
 	while($rs=mysql_fetch_array($result)) {
	$id_type_lease=$rs[id_type_lease];
	$name_type_lease=$rs[name_type_lease];
	echo "<OPTION VALUE='$id_type_lease'>$name_type_lease</OPTION>";
}
 ?>


ดึงออกมาแล้วเองไปสร้างเงื่อนไขยังไง

สองอันที่ผ่านมาเป้นแบบส่งค่ามา แต่อันนี้ดึงออกมาแล้วเอามาเป็นเงื่อนไข เลยงงครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 00:12:56 By : buraratn
 


 

No. 15



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


แล้วดึงมาใช้ยังไงหนอ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 09:28:52 By : buraratn
 


 

No. 16



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


เอาตารางมา ดูคับ
ท่านโปรแกรมมั่ว

code ด้านบนคุ้นๆ เหมือนเคยเห็น


ประวัติการแก้ไข
2011-06-11 10:36:16
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 10:35:49 By : TEST
 


 

No. 17



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ดึงออกมาแล้วเองไปสร้างเงื่อนไขยังไง

ก็ submit form ไปซิครับ มันก็จะเก็บ request ไปสร้างเงื่อนไขได้
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 11:25:10 By : PlaKriM
 


 

No. 18



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


มีสามตารางครับ ต้องการค้นจากที่เลือกประเภทการเช่ามาครับ

ตาราง tb_product(หอพัก)

id_prd
ref_id_type
ref_id_type_lease
name_prd
detail_prd
price_prd
photo_prd
address_prd
tel_prd

ตาราง tb_type(ประเภทหอพัก เช่น ชาย หญิง)

id_type
name_type


ตาราง tb_type_lease(ประเภทการเช่า เช่า เดือน เทอม)

id_type_lease
name_type_lease
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 12:19:02 By : buraratn
 


 

No. 19



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


ตาราง tb_type กับ ตาราง tb_product และ tb_type_lease

มี ฟิวไหนเป็นตัวบ่งบอกว่า ว่า join กันได้คับ

อีกอย่างหนึ่ง @include "connect.php"; ใส่แค่อันเดียวก็พอคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 12:42:10 By : TEST
 


 

No. 20



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


id_type กับ ref_id_type
id_type_lease กับ ref_id_type_lease


หรือต้องแก้ฐานข้อมูล เอาคำว่า ref ออกครับ

ว่าแล้วก็แก้ดีกว่าครับ

id_type กับ id_type
id_type_lease กับ id_type_lease


ประวัติการแก้ไข
2011-06-11 12:57:16
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 12:55:29 By : buraratn
 


 

No. 21



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


เอาทีละจุดก่อนนะ บรรทัดที่ 042 - 051 แก้ตามนี้ก่อน

Code (PHP)
                <SELECT NAME="ref_id_type_lease">                
				<?
                @include "connect.php"; // connect.php สร้างทำไมหลายอัน
                $sql="select * from tb_type_lease";
                $result=mysql_db_query($sql);
                while($rs=mysql_fetch_array($result)){?>
                <OPTION VALUE="0">เลือกประเภทการเช่าหอพัก</OPTION>
                <option value="<?=$rs['id_type_lease']?>"><?=$rs['name_type_lease']?></option>
                <? }?>
              </SELECT>



ประวัติการแก้ไข
2011-06-11 13:00:03
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 12:56:02 By : TEST
 


 

No. 22



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


คุณ Black Magic ว่าไปเลยครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 13:01:33 By : PlaKriM
 


 

No. 23



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


จัดไปคับ พี่อั๋น
น่าจะประมาณนี้ ผิดถูกอยู่ที่ชื่อ ฟิวนะ ลองแก้เอา

Code (PHP)
<html>  
<head>  
<title>ค้นหา</title>
<style type="text/css">
th {font-family:sans-serif;
font-size:12px;
}
.style1 {color: #990000}
</style>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>  
<script type="text/javascript">  
google.load("jquery", "1.3.2");  
</script> 
<script type="text/javascript">
function get_search (p, t){
	var p = $("#price").val();
	var t = $("#txtKeyword").val();
	
	if(p.length==0 && t.length==0){
		alert('โปรดเลือกราคาหรือชื่อหอพักที่ต้องการค้นหา');
	}	
	
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>  
<body>
<center><table width="988" border="0" bgcolor="#00FFCC">
  <tr>
    <td align="center"><p>
<? 
@include "headder.php"; 
@include "menu.php"; 
@include "connect.php";  // สร้างที่เดียวก็พอแล้วคับ
?>
          </p>
      <center>
      </center>
      <form name="frmSearch" method="post" action="<?=$_SERVER['PHP_SELF']?>" onSubmit="get_search (price, txtKeyword)">
        <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <th width="631" bgcolor="#33CCFF"><div align="center">ประเภทการเช่าหอพัก
                <SELECT NAME="ref_id_type_lease">                
				<?
                //@include "connect.php"; // connect.php สร้างทำไมหลายอัน ไม่เข้าใจ
                $sql="select * from tb_type_lease";
                $result=mysql_query($sql);
                while($rs=mysql_fetch_array($result)){?>
                <OPTION VALUE="0">เลือกประเภทการเช่าหอพัก</OPTION>
                <option value="<?=$rs['id_type_lease']?>"><?=$rs['name_type_lease']?></option>
                <? }?>
              </SELECT>
              ราคาห้องพัก
              <select name="price" id="price">
                      <option value="">- เลือกราคา -</option>
                      <option value="1" <? if($price==1){?>selected<? }?>>น้อยกว่า1000</option>
                      <option value="2" <? if($price==2){?>selected<? }?>>1001-1500</option>
                      <option value="3" <? if($price==3){?>selected<? }?>>1501-2000</option>
                      <option value="4" <? if($price==4){?>selected<? }?>>2001-2500</option>
                      <option value="5" <? if($price==5){?>selected<? }?>>2501-3000</option>
                      <option value="6" <? if($price==6){?>selected<? }?>>มากกว่า 3000</option>
                  </select>
              ชื่อหอพัก
              <input name="txtKeyword" style="background-color:#99FF99; color:#000000;"type="text" id="txtKeyword" value="<?=$_POST["txtKeyword"];?>">
              <input name="submit" type="submit" style="background-color:green; color:yellow;"value="Search">
            </div></th>
          </tr>
        </table>
      </form>
      <? 
if($_REQUEST['ref_id_type_lease']!=''){
$type	=	$_REQUEST['ref_id_type_lease'];
$where	=	"WHERE id_type_lease = '$type' ";	
}
	  
if($_REQUEST['price']!=''){  
$price = $_REQUEST['price']; 
switch($price){        
case 1:      
$where = " WHERE price_prd < 1000 ";       
break;     
case 2:     
$where = " WHERE price_prd BETWEEN 1001 AND 1500 ";      
break;      
case 3:      
$where = " WHERE price_prd BETWEEN 1501 AND 2000 ";         
break;    
case 4:    
$where = " WHERE price_prd BETWEEN 2001 AND 2500 ";    
break;     
case 5:       
$where = " WHERE price_prd BETWEEN 2501 AND 3000 ";      
break;      
case 6:       
$where = " WHERE price_prd > 3000 ";       
break;            
} 
} 
if($_REQUEST["txtKeyword"] != ""){      
          
$detail = $_REQUEST["txtKeyword"];            
$where = " WHERE (name_prd LIKE '%".$detail."%') ";    
}  
if($_REQUEST['price']!='' && $_REQUEST["txtKeyword"] != "" && $_REQUEST['ref_id_type_lease']!=''){ 
   		
		$type = $_REQUEST['ref_id_type_lease'];
		$price = $_REQUEST['price']; 
		$name_prd = $_REQUEST["txtKeyword"];  
		switch($price){     
		case 1:     
		$where = " WHERE price_prd < 1000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";     
		break;     
		case 2:     
		$where = " WHERE price_prd BETWEEN 1001 AND 1500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;     
		case 3:     
		$where = " WHERE price_prd BETWEEN 1501 AND 2000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";        
		break;     
		case 4:      
		$where = " WHERE price_prd BETWEEN 2001 AND 2500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";       
		break;      
		case 5:       
		$where = " WHERE price_prd BETWEEN 2501 AND 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;       
		case 6:         
		$where = " WHERE price_prd > 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";         
		break;             
		}    
} 
 
?>
      <table width="1000" border="0" align="center" cellpadding="0" cellspacing="1">
        <tr>
          <th width="92" align="center" bgcolor="#FF9900"> <div align="center">รหัสหอพัก</div></th>
          <th width="97" align="center" bgcolor="#FF9900"> <div align="center">ชื่อหอพัก </div></th>
          <th width="140" align="center" bgcolor="#FF9900"> <div align="center">ประเภทหอพัก </div></th>
          <th width="83" align="center" bgcolor="#FF9900"> <div align="center">ราคา</div></th>
          <th width="110" align="center" bgcolor="#FF9900"> <div align="center">รูปภาพ </div></th>
          <th width="170" align="center" bgcolor="#FF9900"> <div align="center">รายละเอียด</div></th>
        </tr>
        <?  
if($price!='' || $txtKeyword!='' || $type!=''){
$strSQL  = " SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .=	" LEFT JOIN tb_type ON tb_product .id_type_lease = tb_type.id_type_lease";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");  
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page =10;   // Per Page

	$Page = $_GET["Page"];
	if(!$_GET["Page"])
	{
		$Page=1;
	}

	$Prev_Page = $Page-1;
	$Next_Page = $Page+1;

	$Page_Start = (($Per_Page*$Page)-$Per_Page);
	if($Num_Rows<=$Per_Page)
	{
		$Num_Pages =1;
	}
	else if(($Num_Rows % $Per_Page)==0)
	{
		$Num_Pages =($Num_Rows/$Per_Page) ;
	}
	else
	{
		$Num_Pages =($Num_Rows/$Per_Page)+1;
		$Num_Pages = (int)$Num_Pages;
	}

	$strSQL .=" order  by id_prd ASC LIMIT $Page_Start , $Per_Page";
	$objQuery  = mysql_query($strSQL);

$bg = 1;	
while($objResult = mysql_fetch_array($objQuery)) {$bg++;
	if($bg%2==0){
		$bgr = '#99FF99';
	}else{
		$bgr = '#00FFCC';
	}
?>
        <tr bgcolor="<?=$bgr?>">
          <td height="50"><div align="center">
            <?=$objResult["id_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_type"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["price_prd"];?>
          </div></td>
          <td align="right"><div align="center"><img src='photo/<?=$objResult["photo_prd"];?>' width='80' height='60'  /></div></td>
          <td><div align="center">[ <A HREF='search_view.php?id_prd=<?=$objResult["id_prd"];?>'>แสดงรายละเอียด </A>] </div>
              </div></td>
        </tr>
        <? }}?>
      </table>
      <div align="center"><br>
          <div align="center">
            <center>
            </center>
          </div>
        <span class="style1">จำนวนหอพักทั้งหมด</span>
          <?= $Num_Rows;?>
          <span class="style1">หอพัก:หน้า :</span>
          <?
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'><< Back</a> ";
}

for($i=1; $i<=$Num_Pages; $i++){
	if($i != $Page)
	{
		echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>$i</a> ]";
	}
	else
	{
		echo "<b> $i </b>";
	}
}
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>Next>></a> ";
}
//mysql_close($objConnect);
?>
          <center>
            <p></p>
          </center>
      </div>
      <p>
        <? include "fooder.php"?>
        </p></td>
  </tr>
</table></center>
<p>&nbsp;</p>
</body>  
</html>



ประวัติการแก้ไข
2011-06-11 14:29:09
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 13:15:11 By : TEST
 


 

No. 24



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ขอลองดูก่นนะครับ


ประวัติการแก้ไข
2011-06-11 13:33:33
2011-06-11 14:26:14
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 13:33:07 By : buraratn
 


 

No. 25



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


Code (PHP)
<SELECT NAME="ref_id_type_lease">                
<?
            $sql="select * from tb_type_lease";
            $result=mysql_db_query($sql);
            while($rs=mysql_fetch_array($result)){?>
            <OPTION VALUE="0">เลือกประเภทการเช่าหอพัก</OPTION>
            <option value="<?=$rs['id_type_lease']?>"><?=$rs['name_type_lease']?></option>
            <? }?>


ตรงนี้ไม่ออกมาให้เลือกครับ
ด
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 14:36:06 By : buraratn
 


 

No. 26



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


ลอก coppy code ไปวางอีกที่ซิ เมื่อกี้ผมแก้ สังเกตุเห็นตรง

$result=mysql_db_query($sql);
เลยเปลี่ยน $result=mysql_query($sql); ให้


ประวัติการแก้ไข
2011-06-11 14:40:47
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 14:39:54 By : TEST
 


 

No. 27



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


Code (PHP)
<option value="">เลือกประเภทการเช่าหอพัก</option>       

อยุ่ใต้ while ครับ ทำให้วนลูปไปด้วย ผมเลยเอาขึ้นมาข้างบน แต่มันก็ออกมาแบบนี้ครับ
Code (PHP)
  <SELECT NAME="ref_id_type_lease">    
				<option value="">เลือกประเภทการเช่าหอพัก</option>          
				<?
                $sql="select * from tb_type_lease";
                $result=mysql_query($sql);
                while($rs=mysql_fetch_array($result)){?>
	
                <option value="<?=$rs['id_type_lease']?>"><?=$rs['name_type_lease']?></option>
                <? }?>

พ

โปรแกรมทำงานยังไม่ได้ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 14:57:00 By : buraratn
 


 

No. 28



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


ตอนนี้ติดอะไรคับ
มี error ไรบ้างคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 15:01:33 By : TEST
 


 

No. 29



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ตามนี้เลยครับ พี่ดดดดดด


ประวัติการแก้ไข
2011-06-11 15:15:05
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 15:14:34 By : buraratn
 


 

No. 30



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ตรงนี้ไม่รู้ผมจอยถูกไหมครับ เพราะแต่ก่อนมันเป้นแบบนี้น่าจะผิดตรงนี้ครับCode (PHP)
$strSQL  = " SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .=	" LEFT JOIN tb_type ON tb_product .ref_id_type_lease = tb_type_lease.id_type_lease";
$strSQL .=	" $where"; 



ประวัติการแก้ไข
2011-06-11 15:18:43
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 15:17:23 By : buraratn
 


 

No. 31



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


ผมอายุ 23 ไม่รู้ว่าพี่หรือเปล่า แล้วแต่จะเรียกคับ

เข้าเรื่องดีกว่า
ดูจากในรูป ก็ query เข้ามาหมดแล้วนะคับ ที่เห็นก็มี

1001 - 1500
ธรรม
2

ไหนลองเอา ตารางใน phpmyadmin มาดูทั้ง 3 ตารางซิคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 15:25:01 By : TEST
 


 

No. 32



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


เพิ่มเติม เวลาคลิ๊กเลือกจะได้รู้ว่าเรียก ตัวไหนไป

Code (PHP)
                <SELECT NAME="ref_id_type_lease">
                <option value="0">เลือกประเภทการเช่าหอพัก</option>               
				<?
                $sql="SELECT * FROM tb_type_lease";
                $result=mysql_query($sql);
                while($rs=mysql_fetch_array($result)){?>                
                <option value="<?=$rs['id_type_lease']?>" <? if($_REQUEST['ref_id_type_lease']==$rs['id_type_lease']){?>selected<? }?>><?=$rs['name_type_lease']?></option>
                <? }?>
              </SELECT>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 15:29:17 By : TEST
 


 

No. 33



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


นั้นก็คงอายุเท่ากันนะครับ ขอทราบชื่อเล่นได้ประครับ จะได้เรียนถูก


tb_product 1
tb_type2
tb_type_lease3
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:01:14 By : buraratn
 


 

No. 34



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


เงียบไปเลย ตกลง
ได้หรือไม่ได้ยังไงคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:02:28 By : TEST
 


 

No. 35



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


Code (PHP)
<html>  
<head>  
<title>ค้นหา</title>
<style type="text/css">
th {font-family:sans-serif;
font-size:12px;
}
.style1 {color: #990000}
</style>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>  
<script type="text/javascript">  
google.load("jquery", "1.3.2");  
</script> 
<script type="text/javascript">
function get_search (p, t){
	var p = $("#price").val();
	var t = $("#txtKeyword").val();
	
	if(p.length==0 && t.length==0){
		alert('โปรดเลือกราคาหรือชื่อหอพักที่ต้องการค้นหา');
	}	
	
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>  
<body>
<center><table width="988" border="0" bgcolor="#00FFCC">
<tr>
<td align="center">
<? 
@include "headder.php"; 
@include "menu.php"; 
@include "connect.php";  // สร้างที่เดียวก็พอแล้วคับ
?>

<form name="frmSearch" method="post" action="<?=$_SERVER['PHP_SELF']?>" onSubmit="get_search (price, txtKeyword)">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="631" bgcolor="#33CCFF"><div align="center">ประเภทการเช่าหอพัก
    <SELECT NAME="ref_id_type_lease">
    <option value="0">เลือกประเภทการเช่าหอพัก</option>               
    <?
    $sql="SELECT * FROM tb_type_lease";
    $result=mysql_query($sql);
    while($rs=mysql_fetch_array($result)){?>                
    <option value="<?=$rs['id_type_lease']?>" <? if($_REQUEST['ref_id_type_lease']==$rs['id_type_lease']){?>selected<? }?>><?=$rs['name_type_lease']?></option>
    <? }?>
  </SELECT>
  ราคาห้องพัก
  <select name="price" id="price">
          <option value="">- เลือกราคา -</option>
          <option value="1" <? if($price==1){?>selected<? }?>>น้อยกว่า1000</option>
          <option value="2" <? if($price==2){?>selected<? }?>>1001-1500</option>
          <option value="3" <? if($price==3){?>selected<? }?>>1501-2000</option>
          <option value="4" <? if($price==4){?>selected<? }?>>2001-2500</option>
          <option value="5" <? if($price==5){?>selected<? }?>>2501-3000</option>
          <option value="6" <? if($price==6){?>selected<? }?>>มากกว่า 3000</option>
      </select>
  ชื่อหอพัก
<input name="txtKeyword" style="background-color:#99FF99; color:#000000;"type="text" id="txtKeyword" value="<?=$_POST["txtKeyword"];?>">
<input name="submit" type="submit" style="background-color:green; color:yellow;"value="Search">
</div></th>
</tr>
</table>
</form>
      <? 
if($_REQUEST['ref_id_type_lease']!=''){
$type	=	$_REQUEST['ref_id_type_lease'];
$where	=	"WHERE id_type_lease = '$type' ";	
}
	  
if($_REQUEST['price']!=''){  
$price = $_REQUEST['price']; 
switch($price){        
case 1:      
$where = " WHERE price_prd < 1000 ";       
break;     
case 2:     
$where = " WHERE price_prd BETWEEN 1001 AND 1500 ";      
break;      
case 3:      
$where = " WHERE price_prd BETWEEN 1501 AND 2000 ";         
break;    
case 4:    
$where = " WHERE price_prd BETWEEN 2001 AND 2500 ";    
break;     
case 5:       
$where = " WHERE price_prd BETWEEN 2501 AND 3000 ";      
break;      
case 6:       
$where = " WHERE price_prd > 3000 ";       
break;            
} 
} 
if($_REQUEST["txtKeyword"] != ""){      
          
$detail = $_REQUEST["txtKeyword"];            
$where = " WHERE (name_prd LIKE '%".$detail."%') ";    
}  
if($_REQUEST['price']!='' && $_REQUEST["txtKeyword"] != "" && $_REQUEST['ref_id_type_lease']!=''){ 
   		
		$type = $_REQUEST['ref_id_type_lease'];
		$price = $_REQUEST['price']; 
		$name_prd = $_REQUEST["txtKeyword"];  
		switch($price){     
		case 1:     
		$where = " WHERE price_prd < 1000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";     
		break;     
		case 2:     
		$where = " WHERE price_prd BETWEEN 1001 AND 1500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;     
		case 3:     
		$where = " WHERE price_prd BETWEEN 1501 AND 2000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";        
		break;     
		case 4:      
		$where = " WHERE price_prd BETWEEN 2001 AND 2500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";       
		break;      
		case 5:       
		$where = " WHERE price_prd BETWEEN 2501 AND 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;       
		case 6:         
		$where = " WHERE price_prd > 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";         
		break;             
		}    
} 
 
?>
      <table width="1000" border="0" align="center" cellpadding="0" cellspacing="1">
        <tr>
          <th width="92" align="center" bgcolor="#FF9900"> <div align="center">รหัสหอพัก</div></th>
          <th width="97" align="center" bgcolor="#FF9900"> <div align="center">ชื่อหอพัก </div></th>
          <th width="140" align="center" bgcolor="#FF9900"> <div align="center">ประเภทหอพัก </div></th>
          <th width="83" align="center" bgcolor="#FF9900"> <div align="center">ราคา</div></th>
          <th width="110" align="center" bgcolor="#FF9900"> <div align="center">รูปภาพ </div></th>
          <th width="170" align="center" bgcolor="#FF9900"> <div align="center">รายละเอียด</div></th>
        </tr>
        <?  
if($price!='' || $txtKeyword!='' || $type!=''){
$strSQL  = " SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .=	" LEFT JOIN tb_type_lease ON tb_product .ref_id_type_lease = tb_type_lease.id_type_lease";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL); //or die (mysql_error() . "<br/>".$strSQL);
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page =10;   // Per Page

	$Page = $_GET["Page"];
	if(!$_GET["Page"])
	{
		$Page=1;
	}

	$Prev_Page = $Page-1;
	$Next_Page = $Page+1;

	$Page_Start = (($Per_Page*$Page)-$Per_Page);
	if($Num_Rows<=$Per_Page)
	{
		$Num_Pages =1;
	}
	else if(($Num_Rows % $Per_Page)==0)
	{
		$Num_Pages =($Num_Rows/$Per_Page) ;
	}
	else
	{
		$Num_Pages =($Num_Rows/$Per_Page)+1;
		$Num_Pages = (int)$Num_Pages;
	}

	$strSQL .=" order  by id_prd ASC LIMIT $Page_Start , $Per_Page";
	$objQuery  = mysql_query($strSQL);

$bg = 1;	
while($objResult = mysql_fetch_array($objQuery)) {$bg++;
	if($bg%2==0){
		$bgr = '#99FF99';
	}else{
		$bgr = '#00FFCC';
	}
?>
        <tr bgcolor="<?=$bgr?>">
          <td height="50"><div align="center">
            <?=$objResult["id_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_type"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["price_prd"];?>
          </div></td>
          <td align="right"><div align="center"><img src='photo/<?=$objResult["photo_prd"];?>' width='80' height='60'  /></div></td>
          <td><div align="center">[ <A HREF='search_view.php?id_prd=<?=$objResult["id_prd"];?>'>แสดงรายละเอียด </A>] </div>
              </div></td>
        </tr>
        <? }}?>
      </table>
      <div align="center"><br>
          <div align="center">
            <center>
            </center>
          </div>
        <span class="style1">จำนวนหอพักทั้งหมด</span>
          <?= $Num_Rows;?>
          <span class="style1">หอพัก:หน้า :</span>
          <?
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'><< Back</a> ";
}

for($i=1; $i<=$Num_Pages; $i++){
	if($i != $Page)
	{
		echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>$i</a> ]";
	}
	else
	{
		echo "<b> $i </b>";
	}
}
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>Next>></a> ";
}
//mysql_close($objConnect);
?>
      </div>
      <p>
        <? include "fooder.php"?>
        </p></td>
  </tr>
</table></center>
<p>&nbsp;</p>
</body>  
</html>



ประวัติการแก้ไข
2011-06-11 16:06:51
2011-06-11 16:12:29
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:05:50 By : TEST
 


 

No. 36



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


error ครับ

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Dormitory\Search2.php on line 144

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Dormitory\Search2.php on line 176
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:09:23 By : buraratn
 


 

No. 37



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


ลอง copy อีกทีคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:12:55 By : TEST
 


 

No. 38



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ได้แล้วครับ แต่ที่เช็ดค่าถ้าไม่เลือกทั้งสามอย่างยังไม่ทำงานครับ

ผมลองเปลี่ยนเป็นแบบนี้แล้วครับ แต่ไม่เช็คให้ครับ ว่าว่าง

Code (PHP)
<script src="http://www.google.com/jsapi" type="text/javascript"></script>  
<script type="text/javascript">  
google.load("jquery", "1.3.2");  
</script> 
<script type="text/javascript">
function get_search (p, t, s){
	var p = $("#price").val();
	var t = $("#txtKeyword").val();
	var s = $("#type").val();
	
	if(p.length==0 && t.length==0&& s.length==0){
		alert('โปรดเลือกประเภทการเช่า  ราคาหรือพิมพ์ชื่อหอพักที่ต้องการค้นหา');
	}	
	
}

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:32:37 By : buraratn
 


 

No. 39



โพสกระทู้ ( 392 )
บทความ ( 0 )



สถานะออฟไลน์


Code (PHP)
<html>  
<head>  
<title>ค้นหา</title>
<style type="text/css">
th {font-family:sans-serif;
font-size:12px;
}
.style1 {color: #990000}
</style>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>  
<script type="text/javascript">  
google.load("jquery", "1.3.2");  
</script> 
<script type="text/javascript">
function get_search (p, t, x){
	var p = $("#price").val();
	var t = $("#txtKeyword").val();
	var x = $("#ref_id_type_lease").val();
	
	if(p.length==0 && t.length==0 && x.length==0){
		alert('โปรดเลือกราคาหรือชื่อหอพักที่ต้องการค้นหา');
	}	
	
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>  
<body>
<center><table width="988" border="0" bgcolor="#00FFCC">
<tr>
<td align="center">
<? 
@include "headder.php"; 
@include "menu.php"; 
@include "connect.php";  // สร้างที่เดียวก็พอแล้วคับ
?>

<form name="frmSearch" method="post" action="<?=$_SERVER['PHP_SELF']?>" onSubmit="get_search (price, txtKeyword, ref_id_type_lease)">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="631" bgcolor="#33CCFF"><div align="center">ประเภทการเช่าหอพัก
    <select name="ref_id_type_lease" id="ref_id_type_lease">
    <option value="">เลือกประเภทการเช่าหอพัก</option>               
    <?
    $sql="SELECT * FROM tb_type_lease";
    $result=mysql_query($sql);
    while($rs=mysql_fetch_array($result)){?>                
    <option value="<?=$rs['id_type_lease']?>" <? if($_REQUEST['ref_id_type_lease']==$rs['id_type_lease']){?>selected<? }?>><?=$rs['name_type_lease']?></option>
    <? }?>
  </select>
  ราคาห้องพัก
  <select name="price" id="price">
          <option value="">- เลือกราคา -</option>
          <option value="1" <? if($price==1){?>selected<? }?>>น้อยกว่า1000</option>
          <option value="2" <? if($price==2){?>selected<? }?>>1001-1500</option>
          <option value="3" <? if($price==3){?>selected<? }?>>1501-2000</option>
          <option value="4" <? if($price==4){?>selected<? }?>>2001-2500</option>
          <option value="5" <? if($price==5){?>selected<? }?>>2501-3000</option>
          <option value="6" <? if($price==6){?>selected<? }?>>มากกว่า 3000</option>
      </select>
  ชื่อหอพัก
<input name="txtKeyword" style="background-color:#99FF99; color:#000000;"type="text" id="txtKeyword" value="<?=$_POST["txtKeyword"];?>">
<input name="submit" type="submit" style="background-color:green; color:yellow;"value="Search">
</div></th>
</tr>
</table>
</form>
      <? 
if($_REQUEST['ref_id_type_lease']!=''){
$type	=	$_REQUEST['ref_id_type_lease'];
$where	=	"WHERE id_type_lease = '$type' ";	
}
	  
if($_REQUEST['price']!=''){  
$price = $_REQUEST['price']; 
switch($price){        
case 1:      
$where = " WHERE price_prd < 1000 ";       
break;     
case 2:     
$where = " WHERE price_prd BETWEEN 1001 AND 1500 ";      
break;      
case 3:      
$where = " WHERE price_prd BETWEEN 1501 AND 2000 ";         
break;    
case 4:    
$where = " WHERE price_prd BETWEEN 2001 AND 2500 ";    
break;     
case 5:       
$where = " WHERE price_prd BETWEEN 2501 AND 3000 ";      
break;      
case 6:       
$where = " WHERE price_prd > 3000 ";       
break;            
} 
} 
if($_REQUEST["txtKeyword"] != ""){      
          
$detail = $_REQUEST["txtKeyword"];            
$where = " WHERE (name_prd LIKE '%".$detail."%') ";    
}  
if($_REQUEST['price']!='' && $_REQUEST["txtKeyword"] != "" && $_REQUEST['ref_id_type_lease']!=''){ 
   		
		$type = $_REQUEST['ref_id_type_lease'];
		$price = $_REQUEST['price']; 
		$name_prd = $_REQUEST["txtKeyword"];  
		switch($price){     
		case 1:     
		$where = " WHERE price_prd < 1000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";     
		break;     
		case 2:     
		$where = " WHERE price_prd BETWEEN 1001 AND 1500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;     
		case 3:     
		$where = " WHERE price_prd BETWEEN 1501 AND 2000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";        
		break;     
		case 4:      
		$where = " WHERE price_prd BETWEEN 2001 AND 2500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";       
		break;      
		case 5:       
		$where = " WHERE price_prd BETWEEN 2501 AND 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;       
		case 6:         
		$where = " WHERE price_prd > 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";         
		break;             
		}    
} 
 
?>
      <table width="1000" border="0" align="center" cellpadding="0" cellspacing="1">
        <tr>
          <th width="92" align="center" bgcolor="#FF9900"> <div align="center">รหัสหอพัก</div></th>
          <th width="97" align="center" bgcolor="#FF9900"> <div align="center">ชื่อหอพัก </div></th>
          <th width="140" align="center" bgcolor="#FF9900"> <div align="center">ประเภทหอพัก </div></th>
          <th width="83" align="center" bgcolor="#FF9900"> <div align="center">ราคา</div></th>
          <th width="110" align="center" bgcolor="#FF9900"> <div align="center">รูปภาพ </div></th>
          <th width="170" align="center" bgcolor="#FF9900"> <div align="center">รายละเอียด</div></th>
        </tr>
        <?  
if($price!='' || $txtKeyword!='' || $type!=''){
$strSQL  = " SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .=	" LEFT JOIN tb_type_lease ON tb_product .ref_id_type_lease = tb_type_lease.id_type_lease";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL); //or die (mysql_error() . "<br/>".$strSQL);
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page =10;   // Per Page

	$Page = $_GET["Page"];
	if(!$_GET["Page"])
	{
		$Page=1;
	}

	$Prev_Page = $Page-1;
	$Next_Page = $Page+1;

	$Page_Start = (($Per_Page*$Page)-$Per_Page);
	if($Num_Rows<=$Per_Page)
	{
		$Num_Pages =1;
	}
	else if(($Num_Rows % $Per_Page)==0)
	{
		$Num_Pages =($Num_Rows/$Per_Page) ;
	}
	else
	{
		$Num_Pages =($Num_Rows/$Per_Page)+1;
		$Num_Pages = (int)$Num_Pages;
	}

	$strSQL .=" order  by id_prd ASC LIMIT $Page_Start , $Per_Page";
	$objQuery  = mysql_query($strSQL);

$bg = 1;	
while($objResult = mysql_fetch_array($objQuery)) {$bg++;
	if($bg%2==0){
		$bgr = '#99FF99';
	}else{
		$bgr = '#00FFCC';
	}
?>
        <tr bgcolor="<?=$bgr?>">
          <td height="50"><div align="center">
            <?=$objResult["id_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_type"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["price_prd"];?>
          </div></td>
          <td align="right"><div align="center"><img src='photo/<?=$objResult["photo_prd"];?>' width='80' height='60'  /></div></td>
          <td><div align="center">[ <A HREF='search_view.php?id_prd=<?=$objResult["id_prd"];?>'>แสดงรายละเอียด </A>] </div>
              </div></td>
        </tr>
        <? }}?>
      </table>
      <div align="center"><br>
          <div align="center">
            <center>
            </center>
          </div>
        <span class="style1">จำนวนหอพักทั้งหมด</span>
          <?= $Num_Rows;?>
          <span class="style1">หอพัก:หน้า :</span>
          <?
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'><< Back</a> ";
}

for($i=1; $i<=$Num_Pages; $i++){
	if($i != $Page)
	{
		echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>$i</a> ]";
	}
	else
	{
		echo "<b> $i </b>";
	}
}
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>Next>></a> ";
}
//mysql_close($objConnect);
?>
      </div>
      <p>
        <? include "fooder.php"?>
        </p></td>
  </tr>
</table></center>
<p>&nbsp;</p>
</body>  
</html>



ประวัติการแก้ไข
2011-06-11 16:49:38
2011-06-11 16:51:52
2011-06-11 18:22:20
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 16:42:23 By : TEST
 


 

No. 40



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


ได้แล้วครับ ขอบคุณมากมายครับCode (PHP)
<html>  
<head>  
<title>ค้นหา</title>
<style type="text/css">
th {font-family:sans-serif;
font-size:12px;
}
.style1 {color: #990000}
</style>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>  
<script type="text/javascript">  
google.load("jquery", "1.3.2");  
</script> 
<script type="text/javascript">
function get_search (p, t, x){
	var p = $("#price").val();
	var t = $("#txtKeyword").val();
	var x = $("#ref_id_type_lease").val();
	
	if(p.length==0 && t.length==0 && x.length==0){
		alert('โปรดเลือกราคาหรือชื่อหอพักที่ต้องการค้นหา');
	}	
	
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>  
<body>
<center><table width="988" border="0" bgcolor="#00FFCC">
<tr>
<td align="center">
<? 
@include "headder.php"; 
@include "menu.php"; 
@include "connect.php";  // สร้างที่เดียวก็พอแล้วคับ
?>

<form name="frmSearch" method="post" action="<?=$_SERVER['PHP_SELF']?>" onSubmit="get_search (price, txtKeyword, ref_id_type_lease)">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="631" bgcolor="#33CCFF"><div align="center">ประเภทการเช่าหอพัก
    <select name="ref_id_type_lease" id="ref_id_type_lease">
    <option value="">เลือกประเภทการเช่าหอพัก</option>               
    <?
    $sql="SELECT * FROM tb_type_lease";
    $result=mysql_query($sql);
    while($rs=mysql_fetch_array($result)){?>                
    <option value="<?=$rs['id_type_lease']?>" <? if($_REQUEST['ref_id_type_lease']==$rs['id_type_lease']){?>selected<? }?>><?=$rs['name_type_lease']?></option>
    <? }?>
  </select>
  ราคาห้องพัก
  <select name="price" id="price">
          <option value="">- เลือกราคา -</option>
          <option value="1" <? if($price==1){?>selected<? }?>>น้อยกว่า1000</option>
          <option value="2" <? if($price==2){?>selected<? }?>>1001-1500</option>
          <option value="3" <? if($price==3){?>selected<? }?>>1501-2000</option>
          <option value="4" <? if($price==4){?>selected<? }?>>2001-2500</option>
          <option value="5" <? if($price==5){?>selected<? }?>>2501-3000</option>
          <option value="6" <? if($price==6){?>selected<? }?>>มากกว่า 3000</option>
      </select>
  ชื่อหอพัก
<input name="txtKeyword" style="background-color:#99FF99; color:#000000;"type="text" id="txtKeyword" value="<?=$_POST["txtKeyword"];?>">
<input name="submit" type="submit" style="background-color:green; color:yellow;"value="Search">
</div></th>
</tr>
</table>
</form>
      <? 
if($_REQUEST['ref_id_type_lease']!=''){
$type	=	$_REQUEST['ref_id_type_lease'];
$where	=	"WHERE id_type_lease = '$type' ";	
}
	  
if($_REQUEST['price']!=''){  
$price = $_REQUEST['price']; 
switch($price){        
case 1:      
$where = " WHERE price_prd < 1000 ";       
break;     
case 2:     
$where = " WHERE price_prd BETWEEN 1001 AND 1500 ";      
break;      
case 3:      
$where = " WHERE price_prd BETWEEN 1501 AND 2000 ";         
break;    
case 4:    
$where = " WHERE price_prd BETWEEN 2001 AND 2500 ";    
break;     
case 5:       
$where = " WHERE price_prd BETWEEN 2501 AND 3000 ";      
break;      
case 6:       
$where = " WHERE price_prd > 3000 ";       
break;            
} 
} 
if($_REQUEST["txtKeyword"] != ""){      
          
$detail = $_REQUEST["txtKeyword"];            
$where = " WHERE (name_prd LIKE '%".$detail."%') ";    
}  
if($_REQUEST['price']!='' && $_REQUEST["txtKeyword"] != "" && $_REQUEST['ref_id_type_lease']!=''){ 
   		
		$type = $_REQUEST['ref_id_type_lease'];
		$price = $_REQUEST['price']; 
		$name_prd = $_REQUEST["txtKeyword"];  
		switch($price){     
		case 1:     
		$where = " WHERE price_prd < 1000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";     
		break;     
		case 2:     
		$where = " WHERE price_prd BETWEEN 1001 AND 1500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;     
		case 3:     
		$where = " WHERE price_prd BETWEEN 1501 AND 2000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";        
		break;     
		case 4:      
		$where = " WHERE price_prd BETWEEN 2001 AND 2500 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";       
		break;      
		case 5:       
		$where = " WHERE price_prd BETWEEN 2501 AND 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";      
		break;       
		case 6:         
		$where = " WHERE price_prd > 3000 OR name_prd LIKE '%".$name_prd."%' OR id_type_lease = '$type' ";         
		break;             
		}    
} 
 
?>
      <table width="1000" border="0" align="center" cellpadding="0" cellspacing="1">
        <tr>
          <th width="92" align="center" bgcolor="#FF9900"> <div align="center">รหัสหอพัก</div></th>
          <th width="97" align="center" bgcolor="#FF9900"> <div align="center">ชื่อหอพัก </div></th>
          <th width="140" align="center" bgcolor="#FF9900"> <div align="center">ประเภทหอพัก </div></th>
          <th width="83" align="center" bgcolor="#FF9900"> <div align="center">ราคา</div></th>
          <th width="110" align="center" bgcolor="#FF9900"> <div align="center">รูปภาพ </div></th>
          <th width="170" align="center" bgcolor="#FF9900"> <div align="center">รายละเอียด</div></th>
        </tr>
        <?  
if($price!='' || $txtKeyword!='' || $type!=''){
$strSQL  = " SELECT * FROM tb_product  ";       
$strSQL .= " LEFT JOIN tb_type ON tb_product .ref_id_type = tb_type.id_type";
$strSQL .=	" LEFT JOIN tb_type_lease ON tb_product .ref_id_type_lease = tb_type_lease.id_type_lease";
$strSQL .=	" $where"; 
$objQuery = mysql_query($strSQL); //or die (mysql_error() . "<br/>".$strSQL);
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page =10;   // Per Page

	$Page = $_GET["Page"];
	if(!$_GET["Page"])
	{
		$Page=1;
	}

	$Prev_Page = $Page-1;
	$Next_Page = $Page+1;

	$Page_Start = (($Per_Page*$Page)-$Per_Page);
	if($Num_Rows<=$Per_Page)
	{
		$Num_Pages =1;
	}
	else if(($Num_Rows % $Per_Page)==0)
	{
		$Num_Pages =($Num_Rows/$Per_Page) ;
	}
	else
	{
		$Num_Pages =($Num_Rows/$Per_Page)+1;
		$Num_Pages = (int)$Num_Pages;
	}

	$strSQL .=" order  by id_prd ASC LIMIT $Page_Start , $Per_Page";
	$objQuery  = mysql_query($strSQL);

$bg = 1;	
while($objResult = mysql_fetch_array($objQuery)) {$bg++;
	if($bg%2==0){
		$bgr = '#99FF99';
	}else{
		$bgr = '#00FFCC';
	}
?>
        <tr bgcolor="<?=$bgr?>">
          <td height="50"><div align="center">
            <?=$objResult["id_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_prd"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["name_type"];?>
          </div></td>
          <td><div align="center">
            <?=$objResult["price_prd"];?>
          </div></td>
          <td align="right"><div align="center"><img src='photo/<?=$objResult["photo_prd"];?>' width='80' height='60'  /></div></td>
          <td><div align="center">[ <A HREF='search_view.php?id_prd=<?=$objResult["id_prd"];?>'>แสดงรายละเอียด </A>] </div>
              </div></td>
        </tr>
        <? }}?>
      </table>
      <div align="center"><br>
          <div align="center">
            <center>
            </center>
          </div>
        <span class="style1">จำนวนหอพักทั้งหมด</span>
          <?= $Num_Rows;?>
          <span class="style1">หอพัก:หน้า :</span>
          <?
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'><< Back</a> ";
}

for($i=1; $i<=$Num_Pages; $i++){
	if($i != $Page)
	{
		echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>$i</a> ]";
	}
	else
	{
		echo "<b> $i </b>";
	}
}
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&price=$_REQUEST[price]&txtKeyword=$_REQUEST[txtKeyword]'>Next>></a> ";
}
//mysql_close($objConnect);
?>
      </div>
      <p>
        <? include "fooder.php"?>
        </p></td>
  </tr>
</table></center>
<p>&nbsp;</p>
</body>  
</html>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-11 18:30:53 By : buraratn
 


 

No. 41

Guest


อยากได้ code ของ @include "connect.php"; กับ include "fooder.php"?> อะครับ
และ database ชื่ออะไรครับ หรือขอ code ทั้งหมดเลยได้ไหมเอาไว้ศึกษาอะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-07-26 22:40:29 By : โหน่ง
 


 

No. 42



โพสกระทู้ ( 345 )
บทความ ( 0 )



สถานะออฟไลน์


เมล์ครับเดี่ยวส่งให้
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-07-27 19:13:58 By : buraratn
 


 

No. 43

Guest


ขอบพระคุณล่วงหน้ามากครับที่ส่ง mail file มา ให้
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-07-27 21:35:56 By : โหน่ง
 


 

No. 44

Guest


mail ผม [email protected] กับ [email protected]
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-07-27 21:39:37 By : โหน่ง
 


 

No. 45

Guest


ขอด้วยได้ไหมครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-18 16:29:56 By : srutobi
 


 

No. 46

Guest


ขอด้วยได้ไหมครับ [email protected]
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-18 16:31:01 By : srutobi
 


 

No. 47



โพสกระทู้ ( 99 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook

ขอด้วยครับ [email protected] ขอบคุณครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-12-09 17:01:04 By : shinjangs
 


 

No. 48

Guest


พี่ผมกะลังทำโปรเจกเรยขอด้วยนะคับ ขอบคุณคับ
เมลผม[email protected]
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-03-02 11:39:54 By : เก่า
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : การค้นหาข้อมุลครับ 3 ตาราง ตอนนี้ทำได้ 2 ตารางแล้ว แต่ตารางที่ 3 ดึงมาจากฐานข้อมูลครับ เลยทำเงื่อนไขในการค้นหาไม่ถูกครับ ช่วยหน่อยครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่