A vCard file, also known as a VCF (Virtual Contact File), is a standard format for sharing contact information. vCards can include personal information, phone numbers, email addresses, and employment information. This guide demonstrates how to create vCard files in CodeIgniter and dynamically generate and download them.
Table Of Content
1 Prerequisites
1.) PHP version of >= 8.2
2.) Composer
3.) Mysql
2 Introduction
This article explores how to create vCard files in CodeIgniter. You’ll learn how to dynamically generate vCard files using the CodeIgniter vCard library, enabling features such as exporting and downloading vCards.
3 Create / Install a Codeigniter 4 Project
3.1 Install Codeigniter 4 Project
First, make sure your computer has a composer.
Use the following command to install new Codeigniter Project.
Create a new controller named ContactController for handling the process of generating vCards:
phpspark make:controller ContactController
.properties
Controller Function to Export and Download vCard in CodeIgniter:
<?phpnamespaceApp\Controllers;useApp\Controllers\BaseController;useCodeIgniter\HTTP\ResponseInterface;useApp\Models\Contact;classContactControllerextendsBaseController{publicfunctionindex(){returnview('users');}publicfunctionstore(){$jsonStr=file_get_contents('php://input');$jsonObj=json_decode($jsonStr);$contact_data=$jsonObj->contact_data;$model=newContact();$data=["name"=>$contact_data[0],"email"=>$contact_data[1],"phone"=>$contact_data[2],"created_at"=>date('Y-m-d H:i:s')];$model->insert($data);$json_data['status']=1;return$this->response->setJSON($json_data);}publicfunctiongetUsers(){$model=newContact();$request=\Config\Services::request();$limit=$request->getPost('length');$start=$request->getPost('start');$order_column_value=$request->getPost('order')[0]['column'];$order=$request->getPost('columns')[$order_column_value]['data'];$dir=$request->getPost('order')[0]['dir'];$totalData=$model->countAll();$totalFiltered=$totalData;if(empty($request->getPost('search')['value'])){$users=$model->orderBy($order,$dir)->findAll($limit,$start);}else{$search=$request->getPost('search')['value'];$users=$model->like('name',$search)->orLike('email',$search)->orderBy($order,$dir)->findAll($limit,$start);$totalFiltered=$model->like('name',$search)->orLike('email',$search)->countAllResults();}$data=array();if(!empty($users)){foreach($usersas$user){$nestedData['id']=$user['id'];$nestedData['name']=$user['name'];$nestedData['email']=$user['email'];$nestedData['phone']=$user['phone'];$nestedData['created_at']=$user['created_at'];$nestedData['action']='Download VCard';$data[]=$nestedData;}}$json_data=array("draw"=>intval($request->getPost('draw')),"recordsTotal"=>intval($totalData),"recordsFiltered"=>intval($totalFiltered),"data"=>$data);return$this->response->setJSON($json_data);}publicfunctionexportvcard(){$model=newContact();$request=\Config\Services::request();$id=$request->getUri()->getSegment(2);$user=$model->find($id);// Generate VCF content$vcfContent="BEGIN:VCARD\n";$vcfContent.="VERSION:3.0\n";$vcfContent.="FN:".$user['name']."\n";$vcfContent.="TEL;TYPE=HOME,VOICE:".$user['phone']."\n";$vcfContent.="EMAIL:".$user['email']."\n";$vcfContent.="END:VCARD\n";// Define the file name$fileName='contact_'.$id.'.vcf';// Set the headers to force downloadheader('Content-Type: text/vcard');header('Content-Disposition: attachment; filename="'.$fileName.'"');header('Content-Length: '.strlen($vcfContent));// Output the VCF contentecho$vcfContent;// Stop further execution (optional, ensures the script doesn't continue)exit;}}?>
PHP
This demonstrates how to generate vCard files in CodeIgniter and facilitates downloading them.
6 Create a View
Create index.php in app/Views for listing contacts and enabling vCard generation.
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metaname="viewport"content="width=device-width, initial-scale=1.0"><title>DataTables with CodeIgniter 4</title><linkhref="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.1/css/bootstrap.min.css"rel="stylesheet"><linkhref="https://cdn.datatables.net/1.11.4/css/dataTables.bootstrap5.min.css"rel="stylesheet"><scriptsrc="https://code.jquery.com/jquery-3.5.1.js"></script><scriptsrc="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script><scriptsrc="https://cdn.datatables.net/1.10.22/js/dataTables.bootstrap5.min.js"></script><scriptsrc="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script><style>*{margin:0;padding:0;font-family:'Poppins', sans-serif;}body{background-color:#eee!important;background-repeat: no-repeat;background-attachment: fixed;background-size: cover;}.main{display: flex;justify-content: center;align-items: center;height:100vh;}.container{display: flex;flex-direction: column;align-items: center;padding:40px40px30px40px;background-color:rgba(255,255,255,0.9);border-radius:15px;box-shadow:rgba(0,0,0,0.3)05px15px;width:60%;height:700px;position: absolute;}.header-container{display: flex;justify-content: space-between;width:100%;border-bottom:1px solid;margin-bottom:20px;padding-bottom:10px;}.header-container> h3{font-weight:500;}.tasks-container{position: relative;width:100%;}.action-button{display: flex;justify-content: center;}.action-button> button{width:25px;height:25px;font-size:17px;display: flex !important;justify-content: center;align-items: center;margin:0px2px;}.dataTables_wrapper.dataTables_info{position: absolute !important;bottom:20px!important;}</style></head><body><divclass="main"><divclass="container"><divclass="header-container"><h3>Contact Manager with Export to VCF</h3><buttontype="button"class="btn btn-dark btn-sm"onClick="addContact()">
Add Contact
</button></div><divclass="tasks-container"><tableid="userTable"class="table table-bordered "><thead><tr><th>ID</th><th>Name</th><th>Email</th><th>Phone</th><th>Created At</th><th>Action</th></tr></thead><tbody><!-- Data will be loaded here --></tbody></table></div></div></div><script>$(document).ready(function(){loadData();});functionloadData(){$('#userTable').DataTable({"processing":true,"serverSide":true,"ajax":{"url":"<?phpechobase_url('usercontroller/getusers');?>","type":"POST"},"columns":[{data:'id'},{data:'name'},{data:'email'},{data:'phone'},{data:'created_at'},{data:'action'}]});}functionaddContact(){(async()=>{const{value: formValues }=await Swal.fire({title:'Add Contact',confirmButtonText:'Submit',showCloseButton:true,showCancelButton:true,html:'<input id="name" class="swal2-input" placeholder="Enter Name">'+'<input id="email" class="swal2-input" placeholder="Enter Email Id">'+'<input id="phone" class="swal2-input" placeholder="Enter Phone No">',focusConfirm:false,preConfirm:()=>{return[
document.getElementById('name').value,
document.getElementById('email').value,
document.getElementById('phone').value
]}});if(formValues){// Add eventfetch("/store",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({contact_data: formValues}),}).then(response=> response.json()).then(data=>{if(data.status ==1){
Swal.fire('Contact added successfully!','','success');loadData();}else{
Swal.fire(data.error,'','error');}// Refetch events from all sources and rerender
calendar.refetchEvents();}).catch(console.error);}})()}</script></body></html>
PHP
7 Define a Route
In app/Config/Routes.php, define routes for the FullCalenderController controller:
This guide illustrated how to create, generate, and download vCard files in CodeIgniter using the CodeIgniter vCard library. The process enables seamless vCard creation and export functionality in your projects.