Validate URL in PHP with Multiple Method

While taking URL as user input, it’s essential to validate it properly otherwise it can affect the application. In this article, we will validate URLs in PHP with regular expressions and also with the FILTER_VALIDATE_URL function. You can implement those methods in other PHP-based frameworks like Laravel or CI. Here, we will see two methods.

Learn More

Form Validation using jQuery Validate plugin

Data validation before posting to a server is an important essential part of web development. In the front-end, there are many options available to validate user input like custom validation, validation with a required attribute, or using a library for validation. There are many libraries or plugins available to perform front-end validation in jQuery. The

Learn More