How to Validate Password Strength in PHP

PHP Password Validation Check for Strength

The below quick example validates the password field values posted via a form. First, it checks if both the password fields are not empty. Then, it applies a regex-based condition to validate the passwords. When the user provides their account password, it is always recommended to validate the input. Password strength validation is very useful […]

How to submit a PHP form using ajax ?

PHP Registration Form with jQuery AJAX

In this article, we will see the use of the AJAX request to submit a form . The form will be submitted by sending the POST request to the server where the data will be stored. In this article, we gave an example registration form for collecting user information. After client-side validation, these form data […]

How TO – JavaScript Countdown Timer

How-to-Create-a-Countdown-Timer-in-JavaScript

A countdown timer is an accurate timer that can be used for a website or blog to display the countdown to any special event, such as a birthday or anniversary. Set the end date for the timer To create a countdown timer using Javascript, we first need to declare a variable that holds the date […]

Simple Text Editor In JavaScript With Source Code

Simple Text Editor

Simple Text Editor is a simple text editing project in JavaScript. Talking about the project, it has lots of features. A user can create notes and files as they wish. This project is a web version of the official Wordpad application. It is a single page project where you can do your text editing works. […]