Thursday 10 September 2015

Get profile picture from facebook, twitter and gravatar

An useful resource for developer that requires profile images from various social network website. In this article you will learn how to get profile picture URL from Facebook, Twitter and Gravatar.

Get profile picture from facebook
Use following url to get facebook profile image. You have to replace with user id or uname of facebook user, Get facebook ID from here FB Id
 http://graph.facebook.com/<ID>/picture?type=<small|normal|album|large|square>
Eg: http://graph.facebook.com/100002342793491/picture?type=large

Monday 24 August 2015

Detecting Browser Geolocation Info

One interesting aspect of web development is geolocation; where is your user viewing your website from? You can base your language locale on that data or show certain products in your store based on the user's location. Let's examine how you can use the geolocation API to get location details!

Feature detection is the best way to confirm the Geolocation API is avilable.
if("geolocation" in navigator) {
  
 }else {
         alert("No soup for you!  Your browser does not support this feature");
 }

Wednesday 19 August 2015

Get address from Latitude and Longitude Coordinates in php

Get address from Latitude and Longitude Coordinates in php Get Address from given Latitude and Longitude Coordinates using google map api called Reverse Geocoding. It is the process of converting geographic coordinates (Latitude and Longitude) into addresses. Here is a little php function to get address from latitude and longitude.

previously explain about getting latitude and longitude values from Google Maps API, based on the town, city or country location.

Monday 17 August 2015

IMDB API implementation to get movie information


IMDb (Internet Movie Database) is the biggest database of movie information on Internet. IMdb has over 2 million titles of movies and episodes. IMDb is a reliable source for movie information to be used for web applications related to movie and television episodes. Unfortunately IMDb has not published APIs to get the movie information programatically. But fortunately there exists a third party API source (omdbapi.com) from which IMDb movie information can be fetched programatically and used in our applications. The OMDb (Open Movie Database) APIs were developer by Brian Fritz and are widely used to get IMDb movie information.

Thursday 12 March 2015

How To Recover Deleted Facebook Messages, Pictures And Videos...


Hello friends today I’m come with a Facebook trick
I am surely said that when you go on Google and search for this queries “how to retrieve Facebook messages” OR “Recover deleted Facebook messages” then you can find lots of fake post and article there. This is time wasting to read fake posts. That’s why I guide you how you can get back deleted txt massages, photos, videos,Friends,Pokes,Events,Settings,Security,Ads,Private Notes,Mobile Devices,Places,Survey Responses tetc.. . Continue reading…

Tuesday 10 March 2015

Credit Card validation regex script in PHP using Luhn algorithm


Credit card validation is essential for e-commerce websites. Credit card numbers entered by users will not be necessarily correct always. The credit card payment processing companies (visa,mastercard) charge merchandise for each transaction carried out. This also includes the failed transactions. Therefore it becomes essential to validate the credit card number before sending it to the payment gateways. The unique credit card numbers are generated by the issuing banks using "Luhn formula". This tutorial explains how to validate the credit card number entered by user and get the name of the payment network (visa, mastercard etc..) of the credit card. There are different formats for the credit card numbers allotted by the payment networks. The various payment networks and their credit card number formats are given below.