รบกวนถามวิธีปรับ status 2 แล้วให้เหลือโชว์แค่ 1 หน้าเว็บครับ
สวัสดีครับ พอดีตอนนี้กำลังทำโปรเจ็คดีใจมากๆเลยที่เจอเว็บนี้นอนตี3 มาหลายวันแล้วครับT_T
อยากรบกวนถามผู้รู้คือ ที่หน้าประกาศขายรถมันมี 2 status ใช่ปะครับ คือ 1=ยังไม่ขาย 2 = ขายแล้ว
คือผมต้องการให้เมื่อปรับสถานะเป็น 2 แล้วให้ข้อมูลมันโชว์เหลือแค่ 1 จะทำอย่างไรครับมือใหม่มากๆครับรบกวนพี่ๆชี้แนะทีตามอ่านหลายๆกระทู้แล้วมีพี่ๆมาตอบก็งงครับ ไม่รู้ว่าจะไปใส่ช่องไหน
Code (PHP)
$sql=" select c.no,c.id,b.name as brand,m.name as model,c.year,c.color, ";
$sql.=" c.gear,c.price,c.status ";
$sql.=" from car as c ,c_brand as b,c_model as m ";
$sql.=" where c.brand=b.id and c.model=m.id $where order by c.id desc";
$result=mysql_query($sql);
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title><?php echo $sys_title; ?></title>
<link rel="stylesheet" type="text/css" href="../css/style.css" />
<script language="javascript">
</script>
</head>
<body>
<div id="header">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="222"><div align="center"><img src="../images/logo.png" width="164" height="110" /></div></td>
<td width="778"> <font size="+4" color="#FFFFFF"><?php echo $sys_title; ?></font></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><?php include "menu.php"; ?></td>
</tr>
</table>
</div>
<div id="container">
<table width="900" border="0" align="center" cellpadding="0" cellspacing="2">
<tr>
<td width="69"><div align="center"><img src="../images/icon/settings.png" width="32" height="32" /></div></td>
<td width="687"> <font size="+2">ข้อมูลรถ</font></td>
<td width="136"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"><form id="form1" name="form1" method="post" action="car.php">
<div align="right">
ทะเบียน
<input name="no" type="text" id="no" size="4" />
ยี่ห้อ
<select name="brand" id="brand" style="width:180px;" onchange="ch_brand(this.value)">
<option value="0">------ เลือก</option>
<?php
$sql2=" select * from c_brand where id!=1 ";
$result2=mysql_query($sql2);
for ($i=1;$i<=mysql_num_rows($result2);$i++) {
$rs2=mysql_fetch_array($result2);
echo "<option value='$rs2[id]'>$rs2[name]</option>";
}
?>
</select>
<input name="button3" type="submit" class="btn_search" id="button3" value="Submit" />
</div>
</form></td>
</tr>
</table>
<?php if (mysql_num_rows($result) > 0) { ?>
<table width="1000" border="1" align="center" cellpadding="0" cellspacing="0">
<tr class="h_table">
<td width="112" height="30">เลขทะเบียน</td>
<td width="138">ยี่ห้อ</td>
<td width="112">รุ่น</td>
<td width="89">ปี</td>
<td width="88">สี</td>
<td width="77">เกียร์</td>
<td width="119">ราคา</td>
<td width="87">สถานะ</td>
<td width="78"> </td>
<td width="78"> </td>
</tr>
<?php
for ($i=1;$i<=mysql_num_rows($result);$i++) {
$rs=mysql_fetch_array($result);
?>
<tr>
<td height="30"><div align="center"><?php echo $rs["no"]; ?></div></td>
<td><div align="center"><?php echo $rs["brand"]; ?></div></td>
<td><div align="center"><?php echo $rs["model"]; ?></div></td>
<td><div align="center"><?php echo $rs["year"]; ?></div></td>
<td><div align="center"><?php echo $rs["color"]; ?></div></td>
<td><div align="center"><?php if ($rs["gear"]==1) {echo "ธรรมดา";} else {echo "ออโต้";} ?></div></td>
<td><div align="right"><?php echo number_format($rs["price"],2); ?> </div></td>
<td><div align="center"><?php if ($rs["status"]==1) {echo "ยังไม่ขาย";} else {echo "ขายแล้ว";} ?></div></td>
<td><input name="button2" type="button" class="btn_edit" id="button2" value="แก้ไข" onclick="javascript:top.window.location='edit_car.php?id_edit=<?php echo $rs["id"]; ?>';" /></td>
<td><input name="button" type="button" class="btn_del" id="button" value="ลบ" onclick="javascript:if (confirm('คุณแน่ใจหรือว่าต้องการลบข้อมูล')==true) {top.window.location='del_car.php?id_del=<?php echo $rs["id"]; ?>';}" /></td>
</tr>
<?php } ?>
Tag : PHP, MySQL
Date :
2015-07-17 01:37:18
By :
วีระพล
View :
829
Reply :
5
Date :
2015-07-17 01:41:45
By :
วีระพล
Code
$sql=" select c.no,c.id,b.name as brand,m.name as model,c.year,c.color, ";
$sql.=" c.gear,c.price,c.status ";
$sql.=" from car as c ,c_brand as b,c_model as m ";
$sql.=" where c.brand=b.id and c.model=m.id and c.status = '1' order by c.id desc";
$result=mysql_query($sql);
แบบนี้หรือเปล่าครับ
Date :
2015-07-17 09:22:27
By :
mr.win
มันไม่ขึ้นเลยครับพี่ คือความหมายของผมคือ สมมุติรถมี 3 คัน ปรับขายไปแล้ว 1 คัน หน้านั้นๆก็จะเหลือโชว์ 2 คันที่ยังไม่ขายใช่ปะครับ
แล้วอยากจะให้มันรวมยอดให้ตรงไหนก็ได้อะครับว่ารถที่ยังไม่ขายมีกี่คัน ตามรูปนี้อะครับพี่ รบกวนทีครับมือใหม่ ขอบคุณมากๆครับ
Date :
2015-07-17 12:32:14
By :
วีระพล
Load balance : Server 00