PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
werneckbh
/
qr-code
/
docs
/
examples
/
phone
/
Editing: index.md
### Phone Contact As demonstrated in [Generic Use](../generic-use) example, to create a Phone QR Code is as simple as this: ```php <?php use QR_Code\QR_Code; QR_Code::png('TEL:+55 31 1234-5678'); ``` And that should give you:  However, if you want more flexibility, you can do this: ```php <?php use QR_Code\Types\QR_Phone; $phone = new QR_Phone('+55 31 1234-5678'); $phone->setErrorCorrectionLevel('M') ->setMargin(2) ->setSize(5) ->png(); ``` Which should give you: 
SAVE
CANCEL