|
|
|
ขอความช่วยเหลือเรื่องการเพิ่มข้อมูลด้วย (select,checkbox,textbox) ค่ะ |
|
|
|
|
|
|
|
ต้องเอาโค้ดที่ออกแบบหน้าจอไว้แล้วมาลงให้ด้วย เพราะจะได้ไม่ต้องมานั่งเขียนในส่วนที่น้องทำไว้แล้ว
สินค้าที่จะแสดงตามประเภทสินค้าต้องดึงจากฐานข้อมูลใช่มั๊ย งั้นต้องเอาโครงสร้างตารางข้อมูลมาให้ดูด้วย
|
|
|
|
|
Date :
2014-01-23 17:34:03 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ๆผู้รู้ใจดีทุกท่าน ขอความช่วยเหลือหน่อยนะค่ะ
|
|
|
|
|
Date :
2014-01-23 20:13:26 |
By :
ฺBeer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้เอาตารางประเภทสินค้า category มาลงให้ดู
|
|
|
|
|
Date :
2014-01-24 16:09:10 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
category และ supplier มีความสัมพันธ์กันหรือเปล่า??
|
|
|
|
|
Date :
2014-01-24 16:21:52 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไฟล์แรกครับ
<?php
include("connection.php");
// ติดต่อฐานข้อมูลครับ
?>
<!doctype html>
<html lang="en">
<head>
<title>https://www.thaicreate.com/php/forum/104965.html - สั่งซื้อสินค้าจากตัวแทนจำหน่าย</title>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var supid='' , catid='';
$("#SupID").change(function(){
supid = $(this).val();
catid = $("#CatID option:selected").val();
alert(catid+supid);
$.post("product_display.php",{supid:supid,catid:catid},function(data){
$("div#product_display").html(data);
});
});
$("#CatID").change(function(){
catid = $(this).val();
supid = $("#SupID option:selected").val();
alert(catid+supid);
$.post("product_display.php",{supid:supid,catid:catid},function(data){
$("div#product_display").html(data);
});
});
});
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table cellspacing=1 cellpadding=4 width="100%" bgcolor=#CCCCCC border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="100%" bgcolor="#FFFFFF"> <div align="center"></div>
<table cellspacing=1 cellpadding=4 width="100%" border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="35%" bgcolor="#FFFFFF"> <div align="left"><b><img src="file:///D|/โปรเจค/งานใหม่(แก้)/icon/allrowto.gif"" width="11" height="11" align="absbottom">สั่งซื้อสินค้าจากตัวแทนจำหน่าย</b></div></td>
<td width="22%" align=middle bgcolor="#FFFFFF"> <div align="left">
</div></td>
<td width="43%" bgcolor="#FFFFFF"> <div align="right"><a href="adminindex.html">กลับไปหน้าหลัก</a></div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
<br>
<br>
<div align="center">
<table width="528" height="289" bordercolor ="#CCCCCC" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="152" scope="col"><div align="center">เลขที่ใบสั่งซื้อ</div></td>
<th width="360" scope="col"><label for="textfield4"></label>
<div align="left">
<input type="text" name="textfield4" id="textfield4" />
</div></th>
</tr>
<tr>
<td scope="col"><div align="center">ชื่อตัวแทนจำหน่าย</div></td>
<th scope="col"><div align="left">
<select name="SupID" id="SupID">
<?php
$sql = "select sup_id,sup_name from supplier";
$res = mysql_query($sql) or die(mysql_error());
while($data = mysql_fetch_assoc($res)){
echo "<option value='{$data["sup_id"]}{$data["sup_name"]}</option>\n";
}
?>
</select>
</div></th>
</tr>
<tr>
<td><div align="center">ประเภทสินค้า</div></td>
<td><p>
<select name="CatID" id="CatID">
<?php
$sql = "select catid,catname from category";
$res = mysql_query($sql) or die(mysql_error());
while($data = mysql_fetch_assoc($res)){
echo "<option value='{$data["catid"]}{$data["catname"]}</option>\n";
}
?>
</select>
</p></td>
</tr>
<tr>
<td><div align="center">รายละเอียด</div></td>
<td>
<div id="product_display" style="display:block;overflow:auto;width:375px;height:189px">
</div>
</td>
</tr>
<tr>
<td><div align="center">อีเมล์</div></td>
<td><input name="textfield2" type="text" id="textfield2" size="30" /></td>
</tr>
<tr>
<td> </td>
<td><input name="submit" type="submit" id="submit" formaction="รายละเอียดสั่งซื้อสินค้าจากตัวแทนจำหน่าย.html" value="ยืนยันการสั่งซื้อสินค้า" /> <input type="submit" name="submit2" id="submit2" value="ยกเลิก" />
<input type="submit" name="submit3" id="submit3"value="print"/></td>
</tr>
</table>
</div>
<div align="right"></div>
<p> </p>
</form>
<p> </p>
</body>
</html>
ไฟล์ product_display.php
<?php
include("connection.php");
?>
<table>
<?php
$sql = "select * from product where CatID='{$_POST["catid"]}' and Sup_ID='{$_POST["supid"]}' ";
$res = mysql_query($sql) or die(mysql_error());
while($data = mysql_fetch_assoc($res)){
echo "<tr>\n";
echo "<td width='205'>";
echo "<input type='checkbox' name='product[]' value='{$data["ProductID"]}' class='productChkbox' />";
echo "{$data["ProductName"]}</td>\n";
echo "<td width='158'>จำนวน ";
echo "<input name='quantity[]' type='text' class='quantity' size='8' maxlength='5' /></td>\n</tr>\n";
}
?>
</table>
|
|
|
|
|
Date :
2014-01-24 17:05:58 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|