Simple PHP script that generates a QR code using the popular library called PHP QR Code
. This library is open-source and easy to use. Follow these steps to create your QR code generator.
You can download the library from GitHub or directly using Composer if your project supports it.
If using Composer, run this command:
composer require endroid/qr-code
Create a new PHP file, for example, generate_qr.php
, and add the following code:
<?php require 'vendor/autoload.php'; // Ensure you have the autoload from Composer if using Composer use Endroid\QrCode\QrCode; use Endroid\QrCode\ErrorCorrectionLevel; use Endroid\QrCode\LabelAlignment; // Check if the form is submitted if (isset($_POST['text'])) { $text = $_POST['text']; // Get the text from the form // Create a QR code $qrCode = new QrCode($text); $qrCode->setErrorCorrectionLevel(ErrorCorrectionLevel::HIGH()); $qrCode->setSize(300); $qrCode->setMargin(10); // Generate and save the QR code to a file header('Content-Type: image/png'); echo $qrCode->writeString(); // Output the QR code as a PNG image exit; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>QR Code Generator</title> </head> <body> <h1>QR Code Generator</h1> <form method="post" action-xhr="#"> <label for="text">Enter text or URL:</label><br> <input type="text" id="text" name="text" required> <button type="submit">Generate QR Code</button> </form> </body> </html>
generate_qr.php
file to your web server’s document root directory.http://your-server/generate_qr.php
).If you want to extend the functionality, consider adding:
You have now created a simple QR code generator using PHP! This script allows users to input text or URLs, and it generates a corresponding QR code image. Make sure your server meets the requirements for running PHP scripts, and the GD library is enabled for image handling.
WordPress development has evolved significantly, and modern tooling plays a crucial role in creating efficient…
I. Project Overview The goal is to automate the process of notifying search engines (like…
1. Database Structure (MySQL) We'll need a database table to store information about our website's…
This explanation aims to provide a solid foundation for understanding the process and implementing your…
Okay, here's a comprehensive guide on building a real-time website chat script using PHP, HTML,…
Comprehensive guide on creating a simple website analytics system using PHP, HTML, CSS, JavaScript, and…