Field Element As QR Code
Field Element As QR Code
Page
Attachments (6)
Field element
o Guess link type - Will try to guess if the data entered is a URL or email address,
if so then in the list view and detailed view the data is wrapped within the
corresponding link
o Link target - sets whether the created link will open in a new window.
PHP:
$length = 10;
$key = "";
// define possible characters
$possible = "0123456789bcdfghjkmnpqrstvwxyzBCDFGHJKLMNPQRTVWXYZ";
$i = 0;
while ($i < $length) {
$char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
$key .= $char;
$i++;
}
return $key;
o Below this area, make sure you turn the EVAL Option ON.
o Save and refresh your form, you will have a random number generated on the
form page.