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,038

HOME > PHP > PHP Forum > ช่วยเรื่อง การเขียน swit case ในการค้นหา list menu 4 ชั้น หน่อยครับ



 

ช่วยเรื่อง การเขียน swit case ในการค้นหา list menu 4 ชั้น หน่อยครับ

 



Topic : 046439



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



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




คือผมเขียนได้แล้วมันออกแค่ 2 ชั้นอะครับ ผมลองเ้ขียนชั้นที่ 3 มันก็ไม่ออกไม่ใครมีแนวทางเขียนต่อจากผมช่วยที่นะครับ

if(isset($_POST["Submit"])||!empty($_GET["selType"])||!empty($_GET["selCpu"])||!empty($_GET["selTypework"])||!empty($_GET["selPrice"])){
if(isset($_POST["Submit"])){
$selectType=$_POST["selType"];
$selectCpu=$_POST["selCpu"];
$selectTypework=$_POST["selTypework"];
$selectPrice=$_POST["selPrice"];

if($selectType== 0 && $selectCpu == 0 && $selectTypework== 0 && $selectPrice== 0){
$condition = 1;
} elseif ($selectTypework == 0 && $selectPrice == 1){
$condition = 2;
} elseif ($selectTypework == 0 && $selectPrice == 2){
$condition = 3;
} elseif ($selectTypework == 0 && $selectPrice == 3){
$condition = 4;
} elseif ($selectTypework == 0 && $selectPrice == 4){
$condition = 5;
} elseif ($selectTypework == 0 && $selectPrice == 5){
$condition = 6;
} elseif ($selectTypework == 0 && $selectPrice == 6){
$condition = 7;
} elseif ($selectTypework == 0 && $selectPrice == 7){
$condition = 8;
} elseif ($selectTypework == 0 && $selectPrice == 8){
$condition = 9;
} elseif ($selectTypework == 0 && $selectPrice == 9){
$condition = 10;
} elseif ($selectTypework == 0 && $selectPrice == 10){
$condition = 11;
} elseif ($selectTypework!= 0 && $selectPrice == 0){
$condition = 12;
} elseif ($selectTypework!= 0 && $selectPrice == 1){
$condition = 13;
} elseif ($selectTypework!= 0 && $selectPrice == 2){
$condition = 14;
} elseif ($selectTypework!= 0 && $selectPrice == 3){
$condition = 15;
} elseif ($selectTypework!= 0 && $selectPrice == 4){
$condition = 16;
} elseif ($selectTypework!= 0 && $selectPrice == 5){
$condition = 17;
} elseif ($selectTypework!= 0 && $selectPrice == 6){
$condition = 18;
} elseif ($selectTypework!= 0 && $selectPrice == 7){
$condition = 19;
} elseif ($selectTypework!= 0 && $selectPrice == 8){
$condition = 20;
} elseif ($selectTypework!= 0 && $selectPrice == 9){
$condition = 21;
} elseif ($selectTypework!= 0&& $selectPrice == 10){
$condition = 22;
}
}else if(!empty($_GET["selType"])||!empty($_GET["selCpu"])||!empty($_GET["selTypework"])||!empty($_GET["selPrice"])){
$selectType=$_GET["selType"];
$selectPrice=$_GET["selPrice"];
$selectTypework=$_POST["selTypework"];
$selectPrice=$_POST["selPrice"];

if($selectType== 0 && $selectCpu == 0 && $selectTypework== 0 && $selectPrice== 0){
$condition = 1;
} elseif ($selectTypework == 0 && $selectPrice == 1){
$condition = 2;
} elseif ($selectTypework == 0 && $selectPrice == 2){
$condition = 3;
} elseif ($selectTypework == 0 && $selectPrice == 3){
$condition = 4;
} elseif ($selectTypework == 0 && $selectPrice == 4){
$condition = 5;
} elseif ($selectTypework == 0 && $selectPrice == 5){
$condition = 6;
} elseif ($selectTypework == 0 && $selectPrice == 6){
$condition = 7;
} elseif ($selectTypework == 0 && $selectPrice == 7){
$condition = 8;
} elseif ($selectTypework == 0 && $selectPrice == 8){
$condition = 9;
} elseif ($selectTypework == 0 && $selectPrice == 9){
$condition = 10;
} elseif ($selectTypework == 0 && $selectPrice == 10){
$condition = 11;
} elseif ($selectTypework!= 0 && $selectPrice == 0){
$condition = 12;
} elseif ($selectTypework!= 0 && $selectPrice == 1){
$condition = 13;
} elseif ($selectTypework!= 0 && $selectPrice == 2){
$condition = 14;
} elseif ($selectTypework!= 0 && $selectPrice == 3){
$condition = 15;
} elseif ($selectTypework!= 0 && $selectPrice == 4){
$condition = 16;
} elseif ($selectTypework!= 0 && $selectPrice == 5){
$condition = 17;
} elseif ($selectTypework!= 0 && $selectPrice == 6){
$condition = 18;
} elseif ($selectTypework!= 0 && $selectPrice == 7){
$condition = 19;
} elseif ($selectTypework!= 0 && $selectPrice == 8){
$condition = 20;
} elseif ($selectTypework!= 0 && $selectPrice == 9){
$condition = 21;
} elseif ($selectTypework!= 0&& $selectPrice == 10){
$condition = 22;
}

}
switch ( $condition ) {
case 1 : $condition_sql = " order by id asc "; break ;
case 2 : $condition_sql = "where price between 9000 and 10000 order by id desc"; break;
case 3 : $condition_sql = "where price between 10001 and 20000 order by id desc"; break ;
case 4 : $condition_sql = "where price between 20001 and 30000 order by id desc"; break ;
case 5 : $condition_sql = "where price between 30001 and 40000 order by id desc"; break ;
case 6 : $condition_sql = "where price between 40001 and 50000 order by id desc"; break ;
case 7 : $condition_sql = "where price between 50001 and 60000 order by id desc"; break ;
case 8 : $condition_sql = "where price between 60001 and 70000 order by id desc"; break ;
case 9 : $condition_sql = "where price between 70001 and 80000 order by id desc"; break ;
case 10 : $condition_sql = "where price between 80001 and 90000 order by id desc"; break ;
case 11 : $condition_sql = "where price >=90000 order by id desc"; break ;
///
case 12 : $condition_sql = "where typework_id = '$selectTypework' order by id desc"; break ;
case 13 : $condition_sql = "where typework_id = '$selectTypework' and (price between 9000 and 10000) order by id desc"; break ;
case 14 : $condition_sql = "where typework_id = '$selectTypework' and (price between 10001 and 20000) order by id desc"; break ;
case 15 : $condition_sql = "where typework_id = '$selectTypework' and (price between 20001 and 30000) order by id desc"; break ;
case 16 : $condition_sql = "where typework_id = '$selectTypework' and (price between 30001 and 40000) order by id desc"; break ;
case 17 : $condition_sql = "where typework_id = '$selectTypework' and (price between 40001 and 50000) order by id desc"; break ;
case 18 : $condition_sql = "where typework_id = '$selectTypework' and (price between 50001 and 60000) order by id desc"; break ;
case 19 : $condition_sql = "where typework_id = '$selectTypework' and (price between 60001 and 70000) order by id desc"; break ;
case 20 : $condition_sql = "where typework_id = '$selectTypework' and (price between 70001 and 80000) order by id desc"; break ;
case 21 : $condition_sql = "where typework_id = '$selectTypework' and (price between 80001 and 90000) order by id desc"; break ;
case 22 : $condition_sql = "where typework_id = '$selectTypework' and price >= 90000 order by id desc"; break ;
} //ปิด switch ( $condition )
$search="selType=$selectType&selPrice=$selectPrice"; echo "<br />";

}
echo $sqlChk="select * from addnotebook ".$condition_sql; echo "<br />";



Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-08-03 17:09:04 By : wooddy_8 View : 796 Reply : 0
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยเรื่อง การเขียน swit case ในการค้นหา list menu 4 ชั้น หน่อยครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่