Finding a Visitor’s Coordinates

Getting the position information of the site visitor using the HTML5 geolocation API is fairly simple. It utilizes the three methods that are packed into the navigator.geolocation object — getCurrentPosition(), watchPosition() and clearWatch(). The following is a simple example of geolocation that displays your current position. But, first you need to agree to let the browser tell the web server about your […]

Embed a Facebook page’s feed into website Page

If you want to show a facebook page’s content into your website is’s simple, no programming required. Go to https://developers.facebook.com/docs/plugins/page-plugin/ and fill up the setting and then generate code. After generate code just paste the code into your webpage where you want to show facebook’s post. For sample :Paste the code into just after body […]

Create Dynamic Pie Chart in PHP with Google Charts

A pie chart is a circular graph which is divided into slices to represent numerical proportion. The pie chart mainly used to show comparison and the graphical representation helps understand the comparison easily. The pie chart is the perfect choice to illustrate data in a percentage format. Google Visualization API provides an easy way to create charts […]