Step by step Bootstrap 3 tutorials 0

How to use Bootstrap 4 Dropdown?

Bootstrap Dropdown:These are toggle based pre-defined way of building menus in Bootstrap with lots of options to choose from. Dropdown are one of the main components of Bootstrap being part...

Magento Step by Step tutorials 0

How to get current customer id in Magento.?

To get the Current customer id in Magento you can use the following code to get the desired result. if(Mage::getSingleton(‘customer/session’)->isLoggedIn()) { $customerData = Mage::getSingleton(‘customer/session’)->getCustomer(); echo $customerData->getId(); }  

Step by step Bootstrap 3 tutorials 0

Understanding Spacing in Bootstrap 4

Spacing in Bootstrap : Being one of the most preferred responsive framework i.e, Bootstrap 4 has some of the best spacing management to impart higher UI and UX to make...

Step by step Bootstrap 3 tutorials 0

How to Use Bootstrap 4 Progress Bar?

Bootstrap Progress Bar: With this Bootstrap component you can use this to progress of the process to the users as completing to goes from 0 to 100%. With Bootstrap you...

How to use onpage for SEO 0

On Page SEO and its Techniques

Modern day Search engines crawls the page for specific content and on-page factors. Then these on-page techniques become one of the most important factors in getting the right impressions from...

Php tutorials for beginners with example 0

number_format – PHP String Functions

Syntax : number_format ( number, decimals, decimal_point, thousands_sep); Description : number_format() function helps in formating a number (Floating number) with grouped thousands. Note : This function takes either one, two, or four...