This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Database credentials | |
$strHost = 'localhost'; | |
$strUser = ''; | |
$strPassword = ''; | |
$strDatabase = ''; | |
// From and to path | |
$strFrom = 'tl_files/'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Creates an image view using Google's QR Code generator. | |
* @param text The text to be encoded in the QR code | |
* @param size The size of the QR code; Possible Sizes: 100x100, 150x150, 200x200, 250x250, 300x300, 350x350, 400x400, 500x500 | |
*/ | |
function createQRCodeImageView(text, size) { | |
var url = 'http://chart.apis.google.com/chart?cht=qr&chs=' + size + '&chl=' + encodeURI(text) + '&chld=H|0'; | |
var width = size.split('x')[0], height = size.split('x')[1]; | |
if (Ti.Android) { | |
width += 'dp'; |