PHP File Download and Upload

Nowadays, File upload and download functionality is almost mandatory. PHP provides simple and easy ways to upload and download files. You can store these files in a public folder or local storage. In this tutorial, we will show you how you can upload files of various formats like .zip, .pdf, .docx, and .ppt, as well

Learn More

Submit Form via AJAX in JQuery

Generally, the form is submitted to the server using a specified URL in the action attribute but this method refreshes the web page. So whenever you need to submit a form without reloading the page then you can use AJAX upload using jQuery. The jQuery submit() method is useful to handle the form submission process

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

How to Use & Integrate CKEditor in Laravel?

In this tutorial, we are going to create a new Laravel application for creating blogs or posts. While creating a blog we’ll use CKEditor to take input or HTML input and store it in our database. Before starting, let’s understand why CKEditor is useful compared to HTML elements like text-area or inputs. The CKEditor is

Learn More

Disable Weekends in jQuery Datepicker

In web development, taking date input from users commonly occurs. The jQuery Date picker provides an excellent user interface and user experience. It also provides many functionalities like start date, end date, format date for user display and more. While taking date input sometimes we need to skip some dates or need to force a

Learn More

Convert HTML to PDF using JavaScript

Nowadays, exporting data to PDF is common. The PDF files can contain links, buttons, tables, and formatted data like doc files and can be electronically signed as actual documents. While providing bulk download functionality to users, PDF can be an idle choice. It can be useful to provide dynamically created data offline. There are plenty

Learn More