Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
10 Best PHP Frameworks That Will Assist In Coding Effectively
Originally standing for Personal Home Page tools, PHP has come a long way. It is now used to refer to Hypertext Preprocessor. The language is very valuable in creating dynamic websites and interacting with other coding languages. Some people crea...
How to Export Data Reports in Excel Using Codeigniter Framework
Excel is a spreadsheet which contains cells in form of rows and columns. We can say it is a computer program which is used to record and manipulate data in rows and columns.
In this blog we will learn how export data reports in excel format us...
How to get facebook user details using PHP?
Hello Reader's if you are looking to develop a web app which gets the facebook user profile details then by using PHP you can do this. Facebook gives us the public details of any user like: photo, cover location and birthdays. To use thi...
How to send attachments in email using Codeingniter
Hello Reader's, If you have developed the web project in Codeigniter and want to send attachments using emails then in this blog you can learn how to do this.
Sending the attachments can be done by several way in php, We will do th...
routing in codeingiter
Hello Reader's,
If you are working on CodeIgniter Project and want to customize the pages URLs. Codeigniter offers you to do this by using it Routing function. The Routing the is method for hiding the controller and model functions f...
How to make Image cropper using mouse in php and javascript
Hello Reader's
If you working on Codeingiter and looking for to making the free cropping of image before uploading then this blog is very helpful to you.
The process of cropping the images is start from loading the preview of images via...
How to send smtp mail in codeigniter?
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to send SMTP mail in codeigniter?
In a web applications sending email is a very common feature.This is used for sending Emails messages,notifications and newsletters.
If...
How to Make Forgot Password in Codeigniter
Many times the user forget their password which they opt at the time of registration, and the developer who is new in Codeigniter framework struggles to create this module. So, in this tutorial, I will guide you to make the forgot password module...
useful things you can make from URL in codeinter
Hello Reader's in this blog we will see most usefull things which you can make from your website URL, by using codeingter.
Lets talk about the SEO freindly URL. In some site you have seen the URL's are very clean and short. This is imp...
CodeIgniter file structure
Right now that you've got CodeIgniter delivered electronically in addition to unzipped, create a second to think about the actual document design. Under shows the original folder design an individual ll see.
You can see above three folder...
How to create new helper in codeigniter
Codeigniter gives the facility to create own helper according to requirement. You can code easily and call inside the codeigniter controller or model.
1) Create a file and put the following code into it.
if ( ! defined('BASEPATH')) exit('No...
How to insert multiple rows into mysql by a single query using codeigniter
Most of time we need to insert multiple rows at a time into the database but some developer use multiple INSERT statements to insert multiple rows while it is a bad approach to solve this problem. Codeigniter provides a insert batch function.
Ex...
How to remove index.php from Codeigniter
Hello Reader! If you are new to working on Codeigniter Framework for PHP then you are very likely to encounter with the problem of index.php in url. Now we will see how to get resolve this error and then after you do not need to include index.php...
How to Install CodeIgniter in ubuntu
CodeIgniter can be installed in four easy steps on your ubuntu system:
1- Download CodeIgniter package and Unzip. Download link http://www.codeigniter.com/download
2-Upload the CodeIgniter folders and files to your server. Normally the inde...
If you want to remove index.php from url in Codeignitor
If you want to remove index.php file path form url in codeignitor then please follow below steps
create .htaccess file in your root folder and place this code there
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
Rewr...