|
|
|
ขอความช่วยเหลือค่ะ การบ้านเหลือ 2ข้อจาก 20ข้อ ต้องรู้ว่าโค้ดมันทํางานยังไง ขอบคุณค่ะ |
|
|
|
|
|
|
|
อยากรู้ว่ามันทํางานยังไง มันทําอะไรกับอะไร อยากให้มีคนช่วย คอมเม้นอธิบายให้หน่อยค่ะ ลองศึกษาแล้ว รู้บ้างไม่รู้บ้าง ช่วยหนูด้วย TT เหลือแค่2ข้อนี้ หนูก็จะได้เกรด 3.5 แล้วค่ะพี่ๆ
การเพิ่มสินค้า
<?php
$querycategory = "SELECT * FROM `category`";
$resquerycategory = $connectdb->query($querycategory);
if(isset($_POST['submit'])){
$productname = $_REQUEST['productname'];
$productdetail = $_REQUEST['productdetail'];
$productprice = $_REQUEST['productprice'];
$productstatus = $_REQUEST['productstatus'];
$productcategory = $_REQUEST['category'];
$uniqid = uniqid();
$datetime = date('Y-m-d-H-i-s');
$datetimenow = date('Y-m-d H:i:s');
$allowedExts = array("jpeg", "jpg", "png","JPG");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);
if(($_FILES["file"]["size"] < 1000000000000000)){
if($_FILES["file"]["error"] > 0){
$alert = true;
$alert1 = "ไม่สามารถเพิ่มสินค้าใหม่ได้";
$alert2 = "โปรดลองใหม่อีกครั้ง";
$alert3 = "error";
}else{
$filename = $datetime.$uniqid.$_FILES["file"]["name"];
if(file_exists("img/product/" . $filename)){
$alert = true;
$alert1 = "ไม่สามารถเพิ่มสินค้าใหม่ได้";
$alert2 = "โปรดลองใหม่อีกครั้ง";
$alert3 = "error";
}else{
move_uploaded_file($_FILES["file"]["tmp_name"],"img/product/" . $filename);
$queryinsert = "INSERT
INTO
`product`(
`product_name`,
`product_detail`,
`product_price`,
`product_stock`,
`product_imgpath`,
`product_status`,
`category_id`
)
VALUES(
'$productname',
'$productdetail',
$productprice,
0,
'$filename',
'$productstatus',
'$productcategory'
)";
$resqueryinsert = $connectdb->query($queryinsert);
if($resqueryinsert){
$alert = true;
$alert1 = "เพิ่มสินค้าใหม่เรียบร้อย";
$alert3 = "success";
$alerthref="index.php?pt=manageproduct";
}
}
}
}else{
$alert = true;
$alert1 = "ไม่สามารถเพิ่มสินค้าใหม่ได้";
$alert2 = "โปรดลองใหม่อีกครั้ง";
$alert3 = "error";
}
}
?>
<section id="basic-examples">
<div class="card">
<div class="card-header">
<h4 class="card-title"><i class="feather icon-edit"></i> เพิ่มสินค้าใหม่</h4>
</div>
<div class="card-body">
<form action="" method="POST" id="addproductform" name="addproductform" enctype="multipart/form-data">
<div class="form-body">
<div class="form-group">
<label>หมวดหมู่ : </label>
<select class="form-control" name="category" id="category" required>
<option value="" disbled>เลือก</option>
<?php
if ($resquerycategory->num_rows){
while($rowcategory = $resquerycategory->fetch_assoc()) {
?>
<option value="<?php echo $rowcategory['category_id']; ?>"><?php echo $rowcategory['category_code']. ' - '.$rowcategory['category_name']; ?></option>
<?php
}
}
?>
</select>
</div>
<div class="form-group">
<label>ชื่อสินค้า : </label>
<input type="text" name="productname" id="productname" placeholder="ชื่อสินค้า" class="form-control" value="" required>
</div>
<div class="form-group">
<label>รายละเอียดสินค้า : </label>
<textarea class="form-control" name="productdetail" id="productdetail" rows="3" placeholder="" required></textarea>
</div>
<div class="form-group">
<label>ราคา : </label>
<input type="number" name="productprice" id="productprice" placeholder="ราคา (บาท)" class="form-control" value="" required>
</div>
<div class="form-group">
<label>สถานะ : </label>
<select class="form-control" name="productstatus" id="productstatus" required>
<option value="show" selected>แสดง</option>
<option value="hide" >ซ่อน</option>
</select>
</div>
<div class="form-group justify-content-center text-center">
<img src="" id="imgshow" alt="กรุณาเลือกไฟล์" height="170px" style="">
</div>
<div class="form-group">
<label for="uploadfile">อัปโหลดรูปภาพสินค้า (ไฟล์ JPG หรือ PNG เท่านั้น)</label>
<div class="custom-file">
<input type="file" class="custom-file-input" id="file" name="file" accept=".jpg,.png" required>
<label class="custom-file-label" for="file">เลือกไฟล์</label>
</div>
</div>
</div>
<div class="modal-footer justify-content-center text-center">
<button type="submit" name="submit" class="btn btn-success" form="addproductform">เพิ่มสินค้า</button>
</div>
</form>
</div>
</div>
</section>
<script>
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#imgshow').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#file").change(function () {
readURL(this);
});
</script>
การลบสินค้า
<?php
if(isset($_POST['productid'])){
$productidfordelete = $_REQUEST['productid'];
$querydelete = "DELETE FROM `product` WHERE `product_id` = $productidfordelete";
$resquerydelete = $connectdb->query($querydelete);
if($resquerydelete){
echo "SUCCESSDELETE";
}
}else{
echo "ERROR";
}
?>
Tag : PHP, CSS, JavaScript, Web Services, XAMPP, Windows
|
|
|
|
|
|
Date :
2022-05-07 21:02:16 |
By :
Panpan1200 |
View :
516 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อนาคตของชาติ ควรยืนหยัดด้วยลำแข้ง
อธิบายไปเลย ตามความเข้าใจของตัวเองดีที่สุด
เผื่อยังไม่รู้ สายงานนี้ ไม่พิจารณาเกียรตินิยมหรือเกรดเฉลี่ย
เผลอๆ บริษัทที่ฉลาด จะเลือกกลุ่มคนที่ได้เกรดต่ำแต่ทำงานเป็นมากกว่า
เกรดสูงจอมปลอมที่ทำงานไม่ได้ ดังนั้น มั่นใจในตัวเองเข้าไว้
ป.ล.ไม่ได้ตำหนิ แค่เตือนสติและชี้ทางที่ถูกควร
และถ้าเป็นการประเมินค่าจ้าง สำหรับพนักงานบริษัทผมคิด
ข้อละ 500 แต่เรต นักเรียนนักศึกษาคิดข้อละ 5k เหตุผลตาม
บรรทัดแรก
|
|
|
|
|
Date :
2022-05-07 21:22:38 |
By :
009 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สิ่งที่ถาม มันคือพื้นฐานนะครับ ถ้าไม่รู้พื้นฐาน จะทำข้ออื่นๆ ได้ยังไง
1 ต้องรู้เรื่องตัวแปร การประกาศ การใช้งาน
2 function การใช้งาน ถ้าเป็น funcion ของ php ก็เปิด document อ่านเอาเลย
ถ้าเป็น function จากเครื่องมืออื่น ก็ต้องอ่าน คู่มือของเขา
ถ้าไม่ขี้เกียจควรจะทำได้เองนะ เหลือแค่ 2 ข้อกิ๊กก๊อกเอง
|
|
|
|
|
Date :
2022-05-08 10:36:53 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|