QR Code Generator using URL Address

Re: [nmsinc] QR Code Generator using URL Address

By Jason - September 22, 2011

Hi,

The issue could be that the _link pseudo field doesn't return an entire web address. You can hard code in your web address like this:

<?php

echo qrCode(array(

'type' => 'url',

'url' => "http://www.myWebSite.com/".$claims_submissionRecord['_link'],

));

?>


Hope this helps
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Jason] QR Code Generator using URL Address

By nmsinc - September 22, 2011

Hi Jason,

That was the problem, now works great!

Thanks!
nmsinc