JavaScript Validation Using Sample Form

Validating a form using client side JavaScript is a used to validate user input fields of form. It is implemented to prevent leaving blank input fields or enter invalid characters in input box . In html 5 , validating input fields become easy due some updation. In input box when we use “required ” attribute ,then a user can left it … Read more

How to Force Download a File With PHP

How to Force Download a File With PHP

In this tutorial, we are going to see how to force download a file using PHP. Generally, we don’t need to add any PHP script to download any type of file. Using an anchor tag with download attribute and file source allows downloading files easily. In PHP programming language, we can force to download a … Read more

How To Convert HTML to PDF Document

When we develop a web application, it is often required to export html content or html table content in PDF files. Generally a developer is needed to change the HTML file to PDF document as per client requirement. It is also a very lengthy task to send HTML content to someone so, we must try … Read more

Introduction to Python

What is Python Python is an open source interpreted high level programming language. It supports object oriented programming. A programmer Guido van Rossum developed this language in 1991. Python is easy to learn and write code and used as a scripting language in both small and large scale application development. Features: Open Source Easy to learn … Read more

How to Disable Link With CSS

In this tutorial, we are going to see an example of how to disable links with css. If you want to show not clickable link, then you can easily do that using css. I have created an anchor tag with a class attribute, then write css for class to disable link. I have written two css … Read more