angeo
answered Feb 18 '22 00:00
download library from the below url :
https://sourceforge.net/projects/phpqrcode/
and start to code for creation of the generate QR code with PHP
<?php
include 'phpqrcode/qrlib.php';
$text = "Invoice no : 121 ";
QRcode::png($text);
?>
include needed library by
include 'phpqrcode/qrlib.php';
than use QRcode to generate png file from the text