PHP code example of killworm737 / qrcode

1. Go to this page and download the library: Download killworm737/qrcode library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

killworm737 / qrcode example snippets


use killworm737\qrcode\Qrcode;

$qrcodeClass = new Qrcode();

$aesKey = "C03458ECE7485C884AC42D3ED8198A4C";// input your aeskey
$invoiceNumAndRandomCode = "AA123456781234";// input your invoiceNumber And RandomCode
$qrcodeClass->aes128_cbc_encrypt($aesKey, $invoiceNumAndRandomCode);