├── .gitignore ├── ReadMe.md ├── empty.png ├── font.otf └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | _Works/ 2 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # PHP eCertificate Generator 2 | 3 | This was created as part of Praveen's live stream on his [YouTube Channel](https://www.youtube.com/praveenscience?sub_confirmation=1). (Don't forget to star :star: the repo and subscribe to my YouTube channel to motivate me!) 4 | 5 | To watch the full live stream, check out: [Who says PHP is dead? Let's Generate eCertificates using PHP feat. Shrutika & Eddie Jaoude](https://youtu.be/895oblyUzX8). 6 | 7 | ![](https://i.imgur.com/EMy2p3Yl.png) 8 | 9 | This project allows a user to auto-generate certificates from a database using PHP. The name of the individual receiving the certificate is fetched from a prepared database and inserted ontop of the background image. The name is centered horizontally. 10 | 11 | ![Certificate](./empty.png) 12 | -------------------------------------------------------------------------------- /empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenscience/PHP-eCertificate-Generator/83e17bffa097b8b7d5220db2a1bb91ed0aaf512a/empty.png -------------------------------------------------------------------------------- /font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenscience/PHP-eCertificate-Generator/83e17bffa097b8b7d5220db2a1bb91ed0aaf512a/font.otf -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------