How to send mail in CodeIgniter using the normal mail() email library. We can send mail in codeigniter using the mail() and SMTP methods. To know how to send mail using SMTP click this link – sending smtp mail in codeigniter. The mail() is the simplest method to send mail in codeigniter. Controller : create […]
Sending SMTP mail in CodeIgniter
How to send SMTP mail in CodeIgniter ? We have normal mail() function in CodeIgniter but in some servers we may have to send emails using SMTP method. So in this article we will discuss how to send SMTP mail in CodeIgniter. To check sending mail in codeigniter goto this link. SMTP stands for Simple […]
Generate QR code using codeigniter
How to generate QR code using codeigniter ? In this tutorial we’ll discuss about generate QR code using codeigniter. QR code is an another form of barcode and the QR stands for Quick response. The difference between QR code and barcode is barcode stores data in horizontal direction where qr code can hold data in […]
Generate barcode in codeigniter using zend library
How to generate barcode in codeigniter? Create display barcode using codeigniter with zend barcode library In this article we’ll discuss how to generate barcode in codeigniter using the zend barcode library Download and copy zend files to application/libraries Controller : Main.php Create a controller Main.php and paste the below code Generate a random number load […]
Upload image from URL in codeigniter
How to upload image from url in codeigniter? Rather than selecting a file from drive and uploading into folder we can upload image from URL. For that we just need to specify the url of image. View/uploadimagefromurl.php Declare a form with input type file box and submit button. For styling use the following Bootstrap link. […]
Codeigniter Pagination
How to do codeigniter pagination with database? Codeigniter pagination is a very simple method to show large amount of data with a limit. Displaying large amount of data at a time will be difficult and it will cause server down also it will take too much time to load the page. Codeigniter pagination is a […]
Create PDF in Codeigniter using Dompdf – flexible library
How to generate a PDF in Codeigniter using Dompdf ? In this tutorial we will create pdf in codeigniter using Dompdf. Here I used image, inline css, external css and internal css to get you know how these things can be used to create pdf. To create Pdf in codeigniter Dompdf is the most flexible […]
Excel file with Database by PHPExcel in Codeigniter
How to generate Excel file using PHPExcel in Codeigniter Here we will discuss how to create excel file from database by PHPExcel in codeigniter. We’ll Export Data from Database to Excel file in Codeigniter Framework by using PHPExcel library. Explanation : Step 1 :- Click here to download PHPExcel. Step 2 :- Extract the downloaded PHPExcel […]
Convert HTML To Word by PHP, Codeigniter – Pure Php class
How to convert HTML to Word by php, html to word by codeigniter The conversion of html to word is one of the most requested functionalities of phpdocx. In this tutorial we are going to convert html to Word by php and codeigniter. Here we are using a custom library named HTML_TO_DOC class to generate MS word document that […]