Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-23-2012, 03:10 AM   PM User | #1
shaunthomson
New Coder

 
Join Date: May 2012
Posts: 89
Thanks: 51
Thanked 0 Times in 0 Posts
shaunthomson is an unknown quantity at this point
QR code generator in php - what's the best lib?

Hi

I've just started to look for a php QR code generator that I can use to generate user-specific QR codes when they sign up at my site.

I would incorporate it into the account activation process, so the png code image ends up in the user's folder on the site.

Anyone had any experience with the code generator php libs out there, and if so, what one would you recommend and why?

Cheers
shaunthomson is offline   Reply With Quote
Old 12-24-2012, 01:46 AM   PM User | #2
mlseim
Master Coder

 
mlseim's Avatar
 
Join Date: Jun 2003
Location: Cottage Grove, Minnesota
Posts: 9,045
Thanks: 8
Thanked 1,029 Times in 1,020 Posts
mlseim has a spectacular aura aboutmlseim has a spectacular aura aboutmlseim has a spectacular aura about
I've used this before ... never had any problems ...

Test script ...
PHP Code:

<?php
     $size          
"200x200";     
     
$correction    "L";     
     
$encoding      "UTF-8";
    
$content "This is the content of the QR";
    
echo 
"<img src=\"http://api.qrserver.com/v1/create-qr-code/?data=".$content."&amp;size=".$size."\" alt=\"\" title=\"\" />";

?>


.
mlseim is offline   Reply With Quote
The Following 2 Users Say Thank You to mlseim For This Useful Post:
shaunthomson (12-25-2012), SlayerACC (12-27-2012)
Old 12-25-2012, 11:38 AM   PM User | #3
shaunthomson
New Coder

 
Join Date: May 2012
Posts: 89
Thanks: 51
Thanked 0 Times in 0 Posts
shaunthomson is an unknown quantity at this point
Cheers Mlseim - I shall take a look.
shaunthomson is offline   Reply With Quote
Reply

Bookmarks

Tags
qr code

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:56 AM.


Advertisement
Log in to turn off these ads.