How to create a VCF card?
First you need to call your settings and generate a vcf. You can even create an image or create a button rather than text to give more style on your website. Code: <a href="vcard.settings.php">Download VCF Card</a> Below is a sample file called vcard.settings.php require_once('./vcard.class.php'); //Path of your vcard class $vc = new vcard(); //Creating new vcard object $vc->filename = "Melanie Borja"; $vc->revision_date = ""; //If you leave this blank, the current timestamp will be used. $vc->class = "PUBLIC"; /* Contact's name data.*/ $vc->data['display_name'] = ""; $vc->data['first_name'] = "Melanie Kaethleen"; $vc->data['last_name'] = "Borja"; #$vc->data['additional_name'] = ""; //Middle name #$vc->data['name_prefix'] = ""; //Mr. Mrs. Dr. #$vc->data['name_suffix'] = ...