A QR code is a type of two-dimensional barcode that is used to store small amounts of text or data (see Wikipedia). Different sizes and error correction levels of QR barcodes exist for storing various volumes of data with the possibility of choosing redundancy.
Implementations on today's mobile phone platforms, such as Android, can use the QR code as the URL to open in the phone’s web browser. (Apple iPhones should be able to read QR codes using the free Semacode software.) Thus, you can track the use of these bar codes with tools such as website log analyzers.
Other data formats used by mobile phones include vCard, which is used to store a person’s contact information (see Wikipedia). Unlike URLs, the use of this data is not easy to track (that is, if the user dials a phone number rather than opening the embedded URL). Although bare URLs are commonly used with a QR code, vCard has a URL field.
If you want to generate QR codes from your website, you can use Google Charts (as Adam Straugan says), or you can use one of the many libraries that exist for popular programming languages (for example, http: //phpqrcode.sourceforge .net / for PHP, or http://code.google.com/p/zxing/ for Java) if you want to do this on your own server. You will need to provide a valid URL or vCard as the encoding text so that the QR code can be scanned using a mobile phone. Industrial applications differ in what is encoded.
Most likely, you would not have saved the QR code images yourself in the database. Instead, you will store the URL or other text contained in the barcode so that you can search for the information you need when scanning the barcode or, if necessary, restore the barcode.
PleaseStand
source share