Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function generateqr($titel, $name, $firma, $firma2, $funktion1, $funktion2, $funktion3, $funktion4, $strasse, $stadt, $plz, $land, $telefon, $fax, $mobile, $mail, $website) {
- $generateqrtext = "BEGIN:VCARD"."<br />".
- "VERSION:4.0"."<br />".
- "N:".$titel." ".$name."<br />".
- "FN:".$titel." ".$name."<br />".
- "ORG:".$firma." ".$firma2."<br />".
- "TITLE:".$funktion1." ".$funktion2." ".$funktion3." ".$funktion4."<br />".
- "ADR;TYPE=work:;;".$strasse.";".$stadt.";;".$plz.";".$land."<br />".
- "TEL;TYPE=work;TYPE=voice:".$telefon."<br />".
- "TEL;TYPE=fax:".$fax."<br />".
- "TEL;TYPE=cell;TYPE=work:".$mobile."<br />".
- "EMAIL;TYPE=work:".$mail."<br />".
- "URL:".$website."<br />".
- "END:VCARD";
- return $generateqrtext;
- }
- $titel = 'B.Sc.';
- $name = 'Max Mustermann';
- $firma = 'Musterfirma';
- $firma2 = 'Zentrale Süd';
- $funktion1 = 'Leading';
- $funktion2 = 'Architect of';
- $funktion3 = 'very special';
- $funktion4 = 'Problems';
- $strasse = 'Musterstr. 1';
- $stadt = 'Musterstadt';
- $plz = '12345';
- $land = 'Germany';
- $telefon = '0123-456789';
- $fax = '0123-456789-99';
- $mobile = '0123-45 45 67';
- $website = 'www.musterfirma.com';
- echo generateqr($titel, $name, $firma, $firma2, $funktion1, $funktion2, $funktion3, $funktion4, $strasse, $stadt, $plz, $land, $telefon, $fax, $mobile, $mail, $website);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment