Skip to content

Instantly share code, notes, and snippets.

@joeybab3
Last active August 20, 2019 16:16
Show Gist options
  • Select an option

  • Save joeybab3/c70262e8d788d453eff4d0ff8524eda3 to your computer and use it in GitHub Desktop.

Select an option

Save joeybab3/c70262e8d788d453eff4d0ff8524eda3 to your computer and use it in GitHub Desktop.

Revisions

  1. joeybab3 revised this gist Aug 20, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion generatesscc18.php
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    <?php
    require_once 'vendor/autoload.php';
    $number = 00002347350023848877;
    $number = 00002347350023848878;
    $generator = new Picqer\Barcode\BarcodeGeneratorHTML();
    $code = chr(241).$number;
    ?>
  2. joeybab3 created this gist Jul 17, 2019.
    12 changes: 12 additions & 0 deletions generatesscc18.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    <?php
    require_once 'vendor/autoload.php';
    $number = 00002347350023848877;
    $generator = new Picqer\Barcode\BarcodeGeneratorHTML();
    $code = chr(241).$number;
    ?>
    <!DOCTYPE html>
    <html>
    <body>
    <?php echo $generator->getBarcode($code, Picqer\Barcode\BarcodeGeneratorPNG::TYPE_CODE_128_C, 2, 60); ?>
    </body>
    </html>