Data Types Available in PHP

8 data types available Integer Float/Double Boolean String Array Object Null Resource   Integers: Integers are whole numbers, without a decimal point (…, -2, -1, 0, 1, 2, …) Floating Point Numbers or Doubles: Floating point numbers (also known as “floats”, “doubles”, or “real numbers”) are decimal or fractional numbers. example: $a = 1.234; $b […]

Fix Tabindex Issue In Registartion/SignUp Forms

#Issue: When user navigates the registration form using TAB key from one field to the next one, after he enters the password, he presses TAB and it shifts focus to “Show password” instead of “Confirm password” – this can lead to user not noticing and start typing the password again and clicking the submit button […]

Solve The Diagonal Submenu Hover Problem Fix

# The Problem Important Article to read: How to solve the diagonal submenu hover problem #How to fix: 1. Use position: relative on the parent/mainmenu item. 2. Use position: absolute on the submenu/child item. 3. Toggle submenu visibility on parent hover. In this example our parent class/div/item is woocommerce.menu-cart-holder and child item is .mini-cart So, […]