What is Woocommerce? WooCommerce is a wordpress based is a free plugin, or functional extension used for selling products and services. Specifically, it makes doing these things affordable and accessible. You can sell digital and physical products, manage inventory and shipping, take secure payments and sort taxes automatically. Why Use WooCommerce? Let’s start with a … Continue reading Woocommerce Introduction
Month: November 2017
What Is Codeigniter? Codeigniter is an open source framework for develop websites on PHP. It is loosely based on MVC pattern, and it is easy to use compare to other PHP framework. CodeIgniter contains libraries, simple interface and logical structure to access these libraries, plug-ins, helpers and some other resources which solve the complex functions … Continue reading Codeigniter Interview Questions
Followings are steps to create static web pages in Codeigniter: 1.The first thing in creation of static page is setting up controller For this you have to create a file pages.php in CodeIgniter/application/controllers i.e. the path of pages.php will be CodeIgniter/application/controllers/pages.php. Write the following code inside pages.php file: 1 2 3 4 5 6 7 … Continue reading Create Pages in Codeigniter
Data binding is a very useful and powerful feature used in software development technologies. It acts as a bridge between the view and business logic of the application. AngularJS follows Two-Way data binding model. One-Way Data Binding The one-way data binding is an approach where a value is taken from the data model and inserted … Continue reading AngularJS Data Binding