category

home / developersection / category

PrestaShop Scratch Coupon addon: Meet the demands of the Customer
php 19-Dec-2018
PrestaShop Scratch Coupon addon: Meet the demands of the Customer

PrestaShop Scratch and Win addon help store owner to build better relationships with existing customers. Knowband provides PrestaShop Scratch Coupon pop up addon which helps the store owner with functionality to easily implement.

PrestaShop Dynamic Pricing addon: Calculate the exact customization cost
php 14-Dec-2018
PrestaShop Dynamic Pricing addon: Calculate the exact customization cost

Knowband a leading name as an eCommerce development company offers Prestashop Dynamic Pricing addon. Online customers can customize their orders and get a dynamic price for the product based on the requirement that user input.

Magento eCommerce Mobile App Builder - Create your own mobile app to boost your business reach
php 21-Jun-2018
Magento eCommerce Mobile App Builder - Create your own mobile app to boost your business reach

Knowband's eCommerce mobile app creator converts your eCommerce website into mobile platform without any technical changes required by store owner. By providing the feature-rich and incredible mobile app, the eCommerce app builder for iOS and android offers a convenient way for the e-retailers to double their store revenue. These eCommerce mobile apps are fully compatible with both android as well as iOS platform. A huge section of our society is using smart phones and tablets, Magento eCommerce mobile app maker can help online retailers in targeting them easily.

OpenCart eCommerce Mobile App Builder by Knowband
php 20-Jun-2018
OpenCart eCommerce Mobile App Builder by Knowband

OpenCart eCommerce Mobile App Maker by KnowBand easily upgrades eCommerce web store into OpenCart mobile app without using any technical or coding knowledge.

Prestashop eCommerce Mobile App Builder - Turn mobile based users into loyal customers
php 20-Jun-2018
Prestashop eCommerce Mobile App Builder - Turn mobile based users into loyal customers

Prestashop eCommerce mobile app creator not just upgrades the online store to mobile platform but brings a set of amazing features with it to engage huge section of mobile-based users and benefit your sales.

Prestashop One Page Checkout Module - Make checkout faster
php 04-Jun-2018
Prestashop One Page Checkout Module - Make checkout faster

The Prestashop One Page Checkout Module by Knowband enhances your checkout page and offers a faster checkout experience to your customers. Social login option offered in this one page checkout Prestashop addon makes it more convenient for the customers to complete the checkout within a blink of an eye. This one page checkout plugin is GDPR compliant.

Login and Logout in PHP
php 24-Jun-2016
Login and Logout in PHP

Sometimes beginners get confused how to login and logout. So I thought it would be helpful if I share some basic steps how to create login and logout with session. Followings are the topics which we will learn in this part of section:

Final class and method in PHP
php 22-Jun-2016
Final class and method in PHP

In our previous section, of inheritance we have seen how derived class (or child class) inherits the function or methods of base class (or parent class). There can be a situation where you want to prevent a class from being inherited.

Type Hinting in PHP
php 21-Jun-2016
Type Hinting in PHP

Type Hinting is a technique that hints the function to accept only given data types. In PHP we can use type hinting for array, object and callable data type.

Object Cloning in PHP
php 21-Jun-2016
Object Cloning in PHP

Objects are inconstant, that means object has capability to change the state of information. In object oriented PHP programming, there can be a situation where you require copies of object.

Method Chaining in PHP
php 21-Jun-2016
Method Chaining in PHP

Method chaining is a technique in which methods are put together one after the other. For example you have a class employee and have three methods like this:

Abstract classes and Interface in PHP
php 20-Jun-2016
Abstract classes and Interface in PHP

Abstract classes are those classes which cannot be instantiated and require subclasses to provide implementation for the abstract methods or in other words you cannot create object of abstract classes