|
|
|
ถ้าเราจะเขียนโค้ดคิดน้ำหนักของสินค้า เราจะต้องเขียนโค้ดไปยังไงหรอคะ ช่วยแนะนำหน่อยนะคะ ไม่ทราบจริง ๆ คะ ขอบพระคุณมากๆคะ |
|
|
|
|
|
|
|
**โค้ดส่วนนี้เป็นโค้ดตรวจสอบการเพิ่มสินค้าคะ
Code (PHP)
<?
session_start();
if ((empty($_SESSION["username"])) or (empty($_SESSION["password"]))){
header("location:admin.php");
exit();
}
include "connect.php";
$name = $_POST["pname"];
$type = $_POST["ptype"];
$detail = $_POST["pdetail"];
$price = $_POST["pprice"];
$pic = $_FILES["pimage"];
if ($name == ""){
echo "กรุณากรอกชื่อสินค้า";
exit();
} else if ($type == "") {
echo "กรุณาเลือกประเภทสินค้า";
exit();
} else if (empty($detail)){
echo "กรุณากรอกรายละเอียดของสินค้า";
exit();
} else if ($price == "") {
echo "กรุณากรอกราคาสินค้า";
exit();
} else if (empty($pic["size"])){
echo "กรุณาเลือกรูปภาพใหม่ หรือรูปภาพที่เลือกไม่ถูกประเภท";
exit();
}
$sql = "insert into product (id_product, name_pro, id_protype,
detail, price, image) values ('', '$name', $type,
'$detail', $price, '')";
mysql_query($sql, $conn)
or die ("ไม่สามารถเพิ่มข้อมูลสินค้าใหม่ได้<br>" . mysql_error());
$sqlmax = "select max(id_product) from product";
$ex = mysql_query($sqlmax, $conn);
$row = mysql_fetch_row($ex);
$filename = $pic["name"];
$filetemp = $pic["tmp_name"];
$ext = strtolower(end(explode('.',$filename)));
$filename = $row[0] . "." . $ext;
copy($filetemp, "images/".$filename);
$sql_update = "update product set image='$filename' where
id_product=$row[0]";
mysql_query($sql_update, $conn);
mysql_close($conn);
include "admin_menu.php";
echo "<center><h1>เพิ่มข้อมูลสินค้าใหม่เรียบร้อยแล้ว</h1></center>";
?>
Tag : PHP, HTML/CSS
|
|
|
|
|
|
Date :
2014-07-02 20:15:20 |
By :
geegee |
View :
852 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วน้ำหนักสินค้า มาจากไหนครับ ในโค๊ด ไม่ได้มีส่วนเกี่ยวกับ น้ำหนักเลยครับ
แล้วหน้าที่ใช้กรอกข้อมูลมีหรือยังครับ ออกแบบหรือยัง
|
|
|
|
|
Date :
2014-07-02 20:37:10 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*** น่าที่ใช้ออกแบบค่ะ พอดีอยากเพิ่มน้ำหนัก ต่อจาก ราคาสินค้าคะ **
Code (PHP)
<?
session_start();
if ((empty($_SESSION["username"])) or (empty($_SESSION["password"]))){
header("location:admin.php");
exit;
}
include "admin_menu.php";
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<html>
<body><br><br>
<p align="center">เพิ่มข้อมูลสินค้า</p>
<form action="admin_add1_product.php" method="post"
enctype="multipart/form-data">
<table width="500" border="0" align="center" cellpadding="5">
<tr>
<td>ชื่อสินค้า</td>
<td><input name="pname" type="text"></td>
</tr>
<tr>
<td>ประเภทสินค้า</td>
<td><select name="ptype" >
<option value=""> -- เลือกข้อมูลประเภทสินค้า -- </option>
<?
include "connect.php";
$sql = "select * from producttype";
$ex = mysql_query($sql, $conn);
while ($rs=mysql_fetch_array($ex)) {
?>
<option value="<?=$rs[id_protype]?>"><?=$rs[name_protype]?></option>
<?
}
mysql_close($conn);
?>
</select>
</td>
</tr>
<tr>
<td valign="top">รายละเอียดสินค้า </td>
<td><textarea name="pdetail" rows="5" ></textarea></td>
</tr>
<tr>
<td>ราคาสินค้า</td>
<td><input name="pprice" type="text" ></td>
</tr>
<tr>
<td>รูปภาพของสินค้า</td>
<td><input name="pimage" type="file"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="เพิ่มข้อมูล"> <input type="reset"
value="ยกเลิก"></td>
</tr>
</table>
<p> </p>
</form>
</body>
</html>
|
|
|
|
|
Date :
2014-07-02 20:59:04 |
By :
geegee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณก๊อปปี้มาได้ถึงขนาดนี้แล้วนะครับ ออกแบบนำเข้านำหนักเอง แค่ field เดียวเองนะครับ
ลองดูก่อนครับ ราคาสินค้า ลอกรุปแบบราคาสินค้ามาใช้ก็ยังได้ครับ
|
|
|
|
|
Date :
2014-07-02 21:07:39 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<tr>
<td>น้ำหนักสินค้า</td>
<td><input name="weight_product" type="text" ></td>
</tr>
ส่วนเรื่องการคำนวณน้ำหนักสินค้าก็ต้องศึกษาเรื่อง IF ELSE เอาครับ
เพราะหากเราต้องการสร้างเงื่อนไข เช่น
น้ำหนัก < 50 กรัม ให้คิดราคาที่ 30 บาท
น้ำหนัก > 50 กรัม แต่น้อยกว่า 100 กรัม ให้คิดที่ 50 บาท
หลักการคิดก็ทำนองนี้ครับ
|
|
|
|
|
Date :
2014-07-02 22:33:25 |
By :
asustak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้า ครับ ไม่ใช่ น่า
|
|
|
|
|
Date :
2014-07-03 00:00:41 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|