
Search In
If you would like to get address from latitude and longitude. You can use below function:
public function getAddressbylatlong($latitude, $longitude){
$latlng = $latitude. ','.$longitude;
$geocode = file_get_contents('http://maps.go
Hello readers, Today in my blog I will discuss about Map tag which is less used but have various features.
As there are around 142 HTML elements that has been standardized by W3C. Below is the brief description about Map Tag in HTML :-
&nbs
In Angular Material, we use <md-autocomplete> for auto complete functionality. <md-autocomplete> is a UI component with dropdown to shown all possible matches to custom query. It acts like a real time suggestion box. When user
Hi Reader's,
Welcome to FindNerd,today we are going to discuss on load model in CakePHP.
Basically model is a very important feature in a CakePHP web application because it is manage everything regarding our data, So in other words, we can say t
The below Example will show you how to read the specific property from the file in JSON format or to read the Specific property from the JSON data.
emp.txt
{
"id": 123,
"name": "Manish",
"phone": [
123456,
987654
],
"role": "Mana
Hi Friends,
Today I will brief you about Dependency Injection. In this blog I will cover up the following topics :-
About Dependency Injection
Real Life Scenario of Dependency.
Benefits of DI.
1. QUEL
It is the query language in the system INGRES. It is based on relational calculus. The fundamental aspect of the query languages based on the relational calculus is tuple variable ( which is a variable that "ranges over"&nb
This example demonstrate how to use AngularJS with MVC5 and WebAPI for CRUD operations(Read,Insert,Update,Delete).
1. First step is to create table for CRUD operations.
2. Create a new project in ASP.NET MVC 5. Select WebAPI while
While fetching data from the sources like the text file , the xml file or from the database first thing you need to do is to create a data source for it.
Data Source acts like a object of information that holds information about the settings and pat
Defining relations between different objects in our application, for instance, a state have many cities, and belongs to a country , is termed as associations. Association establish a way to represent the database table relationship inside Cakephp. It
