Category: PHP

How to get latitude and longitude from google map using Codeigniter

In this article, you’ll know how to get latitude and longitude from address using Google Maps API in Codeigniter. Here we’ll combine all code into a Codeigniter function and you only need to use this function to find latitude and longitude from an address. You can need first create API PHP Code And if you […]

Email send Using Angularjs and PHP

In the following example you learn how to Email sending with AngularJS and PHP <script src = “scripts/form.js”></script> <div class=”container” ng-app=”formApp” ng-controller=”formController”> <div class=”col-md-6 col-md-offset-3″> <!– PAGE TITLE –> <div class=”page-header”> <h1><span class=”glyphicon glyphicon-tower” style=”font-size:20px”></span><span style=”font-size:20px; margin-left:10px;”>Send a direct e-mail to us</span></h1> </div> <!– SHOW ERROR/SUCCESS MESSAGES –> <div id=”messages” class=”well” ng-show=”message”></div> <!– FORM –> […]

Multi-Language Support to Website using PHP

We will create multi-language supported page. here I will use Spanish Language with English. you can set another else. Create a separate PHP file for languages e.g. lang_en.php, lang_sp.php, etc. and define constants variable in it. Include the file according to language selection and use the constant variables in the place of string text on the […]

How to import excel, read data from excel file using a PHPExcel in Codeigniter

In this tutorial, we will learn how to import or read an Excel sheet of data and insert it into the database using PHPExcel in Codeigniter Library. For that, we will create a Database to insert excel data into a table, a form to make a view to upload an excel sheet, and also create […]

Like Query in Codeigniter

This tutorial shows you how to write like query in Codeigniter. Like clause is used in ‘SELECT Query’ to search for the matching pattern in columns. The operator is part of the where clause and employs wildcard character (%) to search for the matching string. Let’s create a like method in codeigniter If you use […]