Posts

Showing posts from April, 2024

Google Chart

Image
$qr_text = "https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=" . $ticket_no . "&choe=UTF-8"; $qr_text = "https://zxing.org/w/chart?chs=300x300&cht=qr&chl=" . $ticket_no . "&choe=UTF-8"; // recommended by google chart $qr_text  = "https://api.qrserver.com/v1/create-qr-code/?size=150x150&format=png&margin=5&data=".$ticket_no $qr_text = "https://qrcode.tec-it.com/API/QRCode?data=".$ticket_no; $qr_text = "https://image-charts.com/chart?chs=300x300&cht=qr&chl=" . $ticket_no . "&choe=UTF-8"; php ref: https://sourceforge.net/projects/phpqrcode/

user table: Unique Email id by GENERATED index

 https://gist.githubusercontent.com/milan-sahana/789b560f079a54ea86f3570c62be0e8b/raw/786d79795faefe7e67721fe5cccc05a3b813dc1e/users.sql

disposable_email_domains

 https://gist.githubusercontent.com/milan-sahana/ca77512e97bd69766abb2d3f3bb17aa6/raw/2ee53992ce5ddfe7df91cf8a35649d6b605bf75b/disposable_email_domains

How to Hide Sticky Lines in #PhpStorm

Image
  Double Shift --> Action Tab --> Search for "Show Sticky Lines" --> Make it off -------Enjoy------

Bootstrap Modal not opening

Please include bootstrap.js after jquery.js then retry <!-- jQuery 2.1.4 --> <script src="./resources/plugins/jQuery/jQuery-2.1.4.min.js"></script> <!-- Bootstrap 3.3.4 JS --> <script src="./resources/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> ref:  https://github.com/ColorlibHQ/AdminLTE/issues/685