สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 20. ฟอร์มแก้ไขข้อมูลสินค้า (จัดการสินค้า Part 4)
สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 20.
ฟอร์มแก้ไขข้อมูลสินค้า
(จัดการสินค้า Part 4)
ระบบ บริหารจัดการร้านกาแฟ PHP | FD22-Cafe (Coffee AND Bakery)
ระบบบริหารจัดการ รีสอร์ท | Booking Resort System PHP
CART&POS (ระบบจัดการงานขายหน้าร้านและ ออนไลน์ สำหรับร้านค้าขนาดกลาง,SME)
ระบบ POS (Point of Sale) ระบบขายหน้าร้าน ตัวเต็ม
(มีระบบ BarCode และ QR-Code รองรับเครื่องแสกน)
ตัวอย่างผลงาน FD22 Logistic 2020 ระบบบริหารจัดการขนส่ง
สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 20. ฟอร์มแก้ไขข้อมูลสินค้า (จัดการสินค้า Part 4)
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
<?php $menu = "product" ?> <?php include("header.php"); ?> <?php $p_id = $_GET['p_id']; $query_product = "SELECT * FROM tbl_product WHERE p_id = $p_id" or die("Error : ".mysqlierror($query_product)); $rs_product = mysqli_query($condb, $query_product); $row=mysqli_fetch_array($rs_product); //echo $row['mem_name']; //echo ($query_member);//test query ?> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> function readURL(input) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#blah').attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } </script> <!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <h1>Product</h1> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="card card-gray"> <div class="card-header "> <h3 class="card-title">แก้ไขสินค้า</h3> </div> <br> <div class="card-body"> <div class="row"> <div class="col-md-8"> <form action="product_db.php" method="POST"> <input type="hidden" name="product" value="edit"> <input type="hidden" name="p_id" value="<?php echo $row['p_id'];?>"> <input name="file1" type="hidden" id="file1" value="<?php echo $row['p_img']; ?>" /> <div class="form-group row"> <label for="" class="col-sm-2 col-form-label">ชื่อสินค้า </label> <div class="col-sm-10"> <input name="p_name" type="text" required class="form-control" placeholder="" value="<?php echo $row['p_name']; ?>" minlength="3"/> </div> </div> <div class="form-group row"> <label for="" class="col-sm-2 col-form-label">Detail </label> <div class="col-sm-10"> <textarea name="p_detail" class="form-control"><?php echo $row['p_detail']; ?></textarea> </div> </div> <div class="form-group row"> <label for="" class="col-sm-2 col-form-label">Price </label> <div class="col-sm-10"> <input name="p_price" type="number" min="0" required class="form-control" placeholder="Price" value="<?php echo $row['p_price']; ?>" minlength="3"/> </div> </div> <div class="form-group row"> <label for="" class="col-sm-2 col-form-label">Qty </label> <div class="col-sm-10"> <input name="p_qty" type="number" min="0" required class="form-control" placeholder="Qty" value="<?php echo $row['p_qty']; ?>" minlength="3"/> </div> </div> <div class="form-group row"> <label for="" class="col-sm-2 col-form-label">img</label> <div class="col-sm-10"> ภาพเก่า<br> <img src="../p_img/<?php echo $row['p_img'];?>" width="150px"> <input type="hidden" name="mem_img2" value="<?php echo $row['p_img'];?>"> <br><br> </div> </div> <div class="form-group row"> <label for="" class="col-sm-2 col-form-label">img</label> <div class="col-sm-10"> เลือกไฟล์ใหม่<br> <div class="custom-file"> <input type="file" class="custom-file-input" id="p_img" name="p_img" onchange="readURL(this);" > <label class="custom-file-label" for="file">Choose file</label> </div> <br><br> <img id="blah" src="#" alt="your image" width="300" /> </div> </div> <button type="submit" class="btn btn-danger btn-block">Update</button> </form> </div> </div> </div> <div class="card-footer"> </div> </div> </section> <!-- /.content --> <?php include('footer.php'); ?> <script> $(function () { $(".datatable").DataTable(); // $('#example2').DataTable({ // "paging": true, // "lengthChange": false, // "searching": false, // "ordering": true, // "info": true, // "autoWidth": false, // http://fordev22.com/ // }); }); </script> </body> </html> <!-- http://fordev22.com/ --> |