A comma separated value (CSV) is a common format for exporting and importing data from the mysql database and it is a widely supports of specific web and desktop application for exporting a bunch of data and exporting to the other application, and off course same table structure for not returning error for importing. In […]
In Web Development, there have forms we need to secure and validate using Regexp Javascript or Regular Expression, in some cases are registration form, transaction forms such as valid email, valid postal code, matching strong password and securities. In this article, I compiled the useful of JavaScript Regular Expression, this is the most common Regexp […]
In registration form mostly in web 2.0, email address is required to register for each user. In registration form we need to check email address from the database using Ajax to avoid the email duplicates, and the form tell the user the email inputted is exist and we need to change the email address. In […]
In this WooCommerce Tutorial tips i will share on How to Add the Sales Countdown Timer in the Product Page, this Countdown Timer function is not available in WooCommerce plugin by default, so to show this timer we need to add a piece of php code in functions.php to show it. To work this properly, […]
In this WooCommerce Tutorial tips i will share on how to Add Confirm Password field in my account Registration page and Checkout Page too. By default in WooCommerce plugin Confirm Password field is included as this time, so we need to customize the functions.php to show up this password fields and also in the confirm […]
Validating forms is extremely important in our web development, we need to validate the form such as registration form and contact form or any input form in our site to prevent human errors and malicious value’s and make valid value before inserting in the database. Early 90’s validation the web forms is complicated to code, […]