Composer: Composer is an application-level dependency manager for the PHP programming language that provides a standard format for managing dependencies of PHP software and required…
8 CommentsCategory: PHP / MySQL
In this post i will show you how to read CSV file with PHP. CSV is a type of file. It means Comma Separated Values.…
Leave a CommentPHPExcel is a pure PHP library for reading and writing spreadsheet files and CodeIgniter is one of the well-known PHP MVC Frameworks. In this tutorial,…
86 CommentsBelow is a tiny function that will take any 10 digit number and convert it into the following phone format: 970-313-2428. function phone_number_format($number) { //…
7 CommentsHey, today I will show you integrating mPDF into CodeIgniter Application. mPDF is a PHP Class, by using this we can easily generate PDF files…
132 CommentsToday i will show you how to generate alphanumeric unique ID using Codeigniter. Some times there is requirement to generate the unique id, But most…
Leave a CommentIn my previous post , i just wrote about copying file from one folder to another folder. Now i want to show you one simple…
Leave a CommentToday i will show you how to copy file from one folder to another or same folder.We can easily create a copy or duplicate file…
5 CommentsIn this post, I will show you how easily we can unzip a zip file using PHP. I am gonna show you most simplest method…
3 CommentsI always use this Base Model for My CodeIgniter App Development, It makes my app portable and flexible.We can define all Global methods and settings…
1 CommentIn this post, we gonna see how we can prevent multiple submissions of a form in PHP applications. Sometimes a user may hit submit button…
12 CommentsConverting array to object with PHP is merely simple for normal array , bit complicated for multidimensional array. Here i will show you different methods…
Leave a CommentBelow is the simple function for getting host name form the URL, it will extract the URL as array and it will return domain name.…
Leave a CommentHere is a snippet of PHP code to create a dynamic Dropdown form field which contain years in the Dropdown List. we can achieve this…
2 Comments