MySql CRUD is simple and easy to use script that can be implemented on any kind of application. CRUD is nothing but a group of operations i.e. create, read, update and delete records that we perform when our application gets interacted with database. So, for performing these operations we have created a simple input form …
Continue reading “Simple MySql CRUD In PHP”
Want to get a perfect email marketing company that is the best fit for your small business?
There is no doubt that there are several email marketing companies available on the market and it’s hard to get the best out of the herd!!
So, how to pick up the top list of email marketing companies?
Well, today I have shortlisted 10 best email marketing companies for small business 2016. The services have been analyzed to suit every need of small business very well.
Contact forms is an essential element of every website as that is the place or source that makes visitors reach and communicate with you easily. So here I am presenting out a superb list of 10 best contact forms for Wordpress websites, going through which you’ll know about some top-class contact forms plugin available in the market.
Let’s get started…
Looking for the right solution for all your bulk email marketing needs? As email marketing ensures a steady flow of specific traffic in no time and helps you build brand image instantly.!! Want to choose the best cost-effective email marketing tool in India to send your emails? Well, reliability and deliverability are the prime concern …
Continue reading “10+ Best Email Marketing Service Providers India 2022”
Push Notification are – Simple messages that one receives from the apps installed in the device. Very popular among mobile devices, iPads and what not..!! For example, Whatsapp and Facebook message notifications in the notification bar of the home screen or lock screen. It is a way to – notify user, update user about new updates, …
Continue reading “PhoneGap : How Push Notifications Work?”
AngularJS is commonly used for creating a single page application. So, it becomes challenging for users to interact their application with the database and perform CRUD operation in it. In this tutorial, we are going to create an AngularJS CRUD Example and will also explain each CRUD operation in detail. For storing of data, we are …
Continue reading “AngularJS CRUD: Example Using MySQLi Database”
RSS stands for Rich Site Summary. An RSS web feed includes summarized or full text of a blog. It also includes metadata like URL, Title, Published date, and time etc. To build the PhoneGap RSS Reader.. ..we’re going to integrate PhoneGap components with Google Feed API. Google Feed API will fetch the feeds of the …
Continue reading “PhoneGap RSS Reader : Send RSS News Feeds On Mobile”
Along with various important features, AngularJS also provides the functionality of animation. AngularJS provides some inbuilt directives especially created for animation which you can directly use in your application. Or you can use $animate service with the custom directive for animation purpose. In this tutorial, we are covering animation via inbuilt directives. Animation using $animate service …
Continue reading “AngularJS Animation”
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 …
Continue reading “Phonegap Contacts Plugin : Contact Management App”
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 …
Continue reading “PhoneGap Bluetooth”
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. …
Continue reading “PhoneGap Inappbrowser”
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 …
Continue reading “PhoneGap SQLite Plugin”
AngularJS provides an additional functionality to validate a form in a very simple way. So, in this tutorial, we will explain how you can validate your forms using AngularJS. In the previous blog, we have already learnt about how to create a form using angular. Now, we’ll talk about validating a form at the client side. Note:- …
Continue reading “AngularJS Form Validation”
Data – Today, it is the most important and valuable entity on the web. The most common way to store data is database, but what if you don’t have a lot of data to store? Database proves to be an overhead in that case. So, what we should use then? Well, the answer is HTML5’s …
Continue reading “PhoneGap Local Storage”
In angular, a form is a collection of controls. Controls (such as, input, select, textarea, button) are the ways to interact with the form. In AngularJS, we use ng-model to access user’s data. We bind input field to a model property using ng-model. ng-model binds input fields of the form to the object of the …
Continue reading “AngularJS – Form”
Dependency Injection is the pattern of designing software in which one or more services (known as dependencies) can be injected in the component (dependent object). It makes our code more maintainable, testable and usable. There are many components in which dependency can be applied like controllers, directives, filter, service, factory, provider, value, constant. But some of …
Continue reading “AngularJS – Dependency Injection”
Services are singleton objects or just like a javascript function to perform a specific task. Angular allow us to use these services with controllers, service, filter or directive. Whenever we want to use service with these components, we will have to specify the service name along with the component. By doing so, component ask angular to …
Continue reading “AngularJS – Services”
AngularJS Filters are used to modify the data according to user’s choice. These filters can be used with directives or expression using a pipe character. Angular has a bunch of filters follows a defined syntax which is given below: Basic syntax for filters: {{data* | filter : option*}} Here we take some data and pipe …
Continue reading “AngularJS Filters”