Phonegap Contacts Plugin : Contact Management App

PhoneGap Contacts Plugin lets the user to manage contacts stored in the device through a mobile app. Things a user can do using this plugin are – Create a contact Delete a contact Update a contact Search/Find a contact We’re going to build this Contact Management App by using PhoneGap & jQuery Mobile Interface. Now, Let’s take a …

PhoneGap Bluetooth

Bluetooth is a software(Based on wireless technology) which is generally used for making the communication or information exchange… …between two electronic devices such as mobile phone computer tablet etc. Though we have various fast data transfer technology today, which are capable to exchange data with a very fast speed rate, still we are carying and …

PhoneGap Inappbrowser

PhoneGap InAppBrowser plugin works according to its name. It opens a new browser window within the application,i.e., no external browser needed to open links in the application. Benefits:  It gives you the ability to access web content within the application itself. You don’t need to open the documents, pdf’s or web pages in any external browser. …

PhoneGap SQLite Plugin

What is SQLite? SQLite is an embedded database software for local database / client-side storage. Features Serverless: It doesn’t follow the client-server model. Zero-Configuration: No headache of configuration or administration because of residing on the client side. Transactional: It is transactional in nature. Self Contained: It is self-contained in nature, i.e, no external dependencies. Reads/Writes: Read/Write operation …

AngularJS Routing : Connect Different Templates In Single Page Application

AngularJS Routing is one of the amazing feature provided by Angular. Routing helps in expanding the scope of view and allow us to use multiple templates within a single page application. In this tutorial, we are going to demonstrate you how to configure and use routing in your single page application. First we will explain …

PhoneGap GPS / PhoneGap Geolocation Plugin

Geolocation can be defined as the real time geographic location of anything. To build an app, we’re going to integrate PhoneGap’s Geolocation Plugin API with Google Maps Javascript API. PhoneGap’s Geolocation Plugin API will grab user’s current location and Google Maps Javascript API will grab nearby addresses. Idea Of The App: Features A multi screen. Show nearby ATMs, Hospitals and Restaurants on the …

PhoneGap Configuration File : Config.xml

Config.xml is a platform specific configuration file. With the help of this configuration file, it is possible to modify the default values of PhoneGap application elements like – Widget Name Description Plugins API Icons Splash Screens etc. Important Points About Config.xml Make sure it is at the top level of your application. You can take a look …

PHP Multi Page Form

Sessions in PHP are used to retain values of a web page and can transfer them from one page to another. Using this property, we can create a multi page form in PHP.