|
|
|
อยากsearch ได้งับช่วยแนะนำที คือผมอยากทำ search แบบ เลือกหัวข้อเอาอะครับ คือ แบบเป็นขั้นอะครับ |
|
|
|
|
|
|
|
ลองไป search depentdetnlist ครับ
|
|
|
|
|
Date :
2010-03-30 13:32:31 |
By :
panya |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คืออยางงัยอะครับ พี่
|
|
|
|
|
Date :
2010-03-31 10:59:19 |
By :
tomsmile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีตัวอย่างแต่มันยาวมากเลย จะลองเอาไปแก้ดูมั้ย
<?php
include_once("class/global_session.php"); ----->
include_once("class/brand.class.php"); ------> เป็นตัว connect db นะ แแต่สร้างไว้เป็น class
$brand = new Brand();
if(isset($_GET['selBand']))
{
$band = $_GET['selBand'];
}
if(isset($_GET['selectpro']))
{
$prod = $_GET['selectpro'];
}
if(isset($_GET['txtCount']))
{
$count = $_GET['txtCount'];
}
if(isset($_GET['txtPrice'])){
$priceValue=$_GET['txtPrice'];
}
if(isset($_GET['txtCount']))
{
if($band!='0' && $prod!='0'){
if(empty($_SESSION['Order']))
{
$list = array();
$list[] = array('BR'=>$band,'PR'=>$prod,'CO'=>$count,'PI'=> $priceValue);
}else
{
$list = $_SESSION['Order'];
$list[] = array('BR'=>$band,'PR'=>$prod,'CO'=>$count,'PI'=> $priceValue);
}
$_SESSION['Order']=$list;
}
}
echo $arry_order;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
include_once("2header.php");
?>
</head>
<body>
<table width="348" height="48" border="0" align="center">
<tr>
<td><div align="center">แบบฟอร์มการเช่า</div></td>
</tr>
</table>
<form action="" method="get" name="renFrm">
<table width="653" height="169" border="0" align="center">
<tr>
<td width="234" height="41">ยี่ห้อสินค้า</td>
<td width="409">
<select name="selBand" size="1" id="selBand" onchange="location='rent.php?selBand='+this.value" >
<option value="0"> กรุณาเลือก</option>
<?php
$query = $brand->getAllData();
while($t= $brand->FETCH($query))
{
?>
<option <? if($t['Brand_ID'] ==$band){echo 'selected';}?> value="<?=$t['Brand_ID']; ?>"><?php echo $t['Brand_Name'];?></option>
<?php } ?>
</select> </td>
</tr>
<tr>
<td height="27">ชื่อสินค้า</td>
<td>
<select name="selectpro" id="selectpro" onchange="location='rent.php?selBand=<?=$band;?>&selectpro='+this.value" >
<option value="0"> กรุณาเลือก </option>
<?php $products = $brand->GetEquipment($band);
while($pr= $brand->FETCH($products))
{
?>
<option value="<?=$pr['Equ_ID'];?>" <?php if($pr['Equ_ID'] ==$prod){echo 'selected';}?> > <?php echo $pr['Equ_Name'];?></option>
<?php } ?>
</select>
</label> </td>
</tr>
<tr>
<td height="27">ราคาต่อหน่วย</td>
<td>
<?php
$price = $brand->FindEquipment($prod);
while($p=$brand->FETCH($price)){
?>
<input type="text" name="txtPrice" id="txtPrice" readonly="readonly" value="<?=$p['Equ_Price']; ?>" /> บาท
<?php } ?> </td>
</tr>
<tr>
<td height="27">จำนวน</td>
<td>
<label>
<input type="text" name="txtCount" id="txtCount" value="1" />
</label> เครื่อง</td>
</tr>
<tr>
<td height="35"></td>
<td><input type="submit" name="btOK" id="btOK" value="Submit"/>
<input type="reset" name="btCancel" id="btCancel" value="Cancel" /></td>
</tr>
</table>
</form>
<table width="851" height="47" border="1" align="center">
<tr>
<td width="137"><div align="center">ยี่ห้อ</div></td>
<td width="360"><div align="center">รายการสินค้า</div></td>
<td width="70"><div align="center">จำนวน</div></td>
<td width="126"><div align="center">ราคา</div></td>
<td width="136"><div align="center">ราคารวม</div></td>
</tr>
<?php
if(!empty($_SESSION['Order']))
{ $list = $_SESSION['Order'];
$counId= count($list);
for($i=0;$i< $counId;$i++)
{
?>
<tr>
<td width="137"><div align="center"><?php echo $list[$i]['BR']; ?></div></td>
<td width="360"><div align="center"><?php echo $list[$i]['PR']; ?> </div></td>
<td width="70"><div align="center"><?php echo $list[$i]['CO']; ?></div></td>
<td width="126"><div align="center"><?php echo $list[$i]['PI']; ?></div></td>
<td width="136"><div align="center"><?php echo $list[$i]['PI']*$list[$i]['CO'];?></div></td>
</tr>
<?php
}
}?>
</table>
<form id="form1" name="form1" method="post" action="SaveOrder.php" >
<div align="center">
<input type="submit" name="contirm" id="contirm" value="Confirm" />
<input type="Reset" name="cacle" id="cacle" value="Cancle"/>
</div>
</form>
</body>
<?php
include_once("footter.php");
?>
</html>
ตัวอย่าง
|
|
|
|
|
Date :
2010-03-31 11:12:10 |
By :
muangklad |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูDB หน่อยจิ
|
|
|
|
|
Date :
2010-03-31 11:37:43 |
By :
aorzabi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอคุงพี่ muangklad มากงับ เดียวป๋มจะลองเอาไปทดลองเขียนดู นะครับ
|
|
|
|
|
Date :
2010-03-31 11:46:03 |
By :
tomsmile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูDB หน่อยจิ
เด๋วจะดูให้
|
|
|
|
|
Date :
2010-03-31 12:00:25 |
By :
aorzabi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DB ของผม หรอครับพี่ aorzabi
|
|
|
|
|
Date :
2010-03-31 12:28:41 |
By :
tomsmile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ค่ะ คุณน้อง tomsmile
ใช้ DB เก็บจังหวัด อำเภอ และตำบล รึป่าวล่ะคะ??
|
|
|
|
|
Date :
2010-03-31 13:27:47 |
By :
aorzabi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่คับผมขอเมลพี่ไว้ได้ไหมอะครับ ผมจะได้อธิบายทีเดียวไปเลยอะงับ
ขอบคุงนะครับ ^^
|
|
|
|
|
Date :
2010-03-31 13:57:17 |
By :
tomsmile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุยกันในนี้แหละค่ะ ให้สมาชิกคนอื่นๆเค้าช่วยดูไปด้วยไงคะ??
|
|
|
|
|
Date :
2010-03-31 14:41:53 |
By :
aorzabi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คับพี่ aorzabi คือผมอยากทำค้นหาข้อมูลแบบมีประเภทให้เลือกอะครับ
ใน Table ตู้โทรศัพท์ผมจะแบ่งเป็น 5 ฟิวล์ ก็จะมี หมายเลข , ประเภทตู้ , ชุมสาย , สำนักงาน , กองงาน
คือผมอยากค้นหาคำให้มันตรงกับฟิวล์ไหนฟิวล์นั้นไปเลย อะงับ เพราะเวลาผมทำ ผมค้นหาสำนักงาน
แต่ชื่อที่ค้นหามันตรงกับชื่อของชุมสาย มันก็ เลย ค้น 2 ทั้งสองฟิวล์เลย ผมต้องทำอยางงัยอะ คับ ขอบคุงนะงับ
***********************************************************
พอดีผมเอา DB มาลงไม่เป็นอะ ครับ เลย ไม่รู้จะอธิบายอยางงัยดี โทษที นะครับพี่ aorzabi
|
|
|
|
|
Date :
2010-03-31 15:31:46 |
By :
tomsmile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะค้นฟิลไหน คุณน้องก็ select ฟิลนั้นสิคะ รึไม่ก็ใช้ WHERE ด้วยก็ได้
SELECT * FROM ชื่อตาราง WHERE ชื่อฟิล=คำที่ค้นหา
ก็ประมาณนี้แหละคะ ใช่รึป่าวคะ??
|
|
|
|
|
Date :
2010-04-01 10:00:14 |
By :
aorzabi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|