สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 47. ติดตั้ง PHP BarcodeGenerator (Barcode Part 1)
สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 47.
ติดตั้ง PHP BarcodeGenerator
(Barcode Part 1)
ระบบ บริหารจัดการร้านกาแฟ 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 47. ติดตั้ง PHP BarcodeGenerator (Barcode Part 1)
Code ไฟล์ t_barcode.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?php include "barcode/src/BarcodeGenerator.php"; include "barcode/src/BarcodeGeneratorHTML.php"; function barcode($code){ $generator = new Picqer\Barcode\BarcodeGeneratorHTML(); $border = 2;//กำหนดความหน้าของเส้น Barcode $height = 40;//กำหนดความสูงของ Barcode return $generator->getBarcode($code , $generator::TYPE_CODE_128,$border,$height); } $barcode1 = 0001; echo barcode($barcode1); ?> |