by Epiphany Infotech | Mar 26, 2017 | Blog Posts
TL;DR The article explains how to create an efficient and fast autocomplete feature using jQuery, PHP, and MySQL. It starts by describing the basic HTML structure of the autocomplete feature and moves on to explain how to create a PHP script that connects to a MySQL...
by Epiphany Infotech | Mar 12, 2017 | Blog Posts
TL;DR article explains how to avoid slowing down your web app by canceling or aborting previous AJAX requests. It provides a code snippet that assigns the current AJAX request object to a variable and checks if it’s complete before initiating a new request, thus...
by Epiphany Infotech | Feb 19, 2017 | Blog Posts
TL;DR Different methods to post data within a form to any URL without refreshing the page using jQuery $.ajax function. It provides an example of a form with different input fields and shares some common and easy ways to post form data using AJAX, including creating...
by Epiphany Infotech | Jan 2, 2017 | Blog Posts
TL;DR The author faced an issue where Laravel’s in-built Validator class did not work properly while uploading audio files in a form via jQuery ajax. After trying different solutions, the author created a custom validation in Laravel based on the file extension...
by Epiphany Infotech | Feb 9, 2016 | Blog Posts
TL;DR A PHP developer shares how to use the PHPExcel library to upload data from an Excel file into a MySQL database. The tutorial includes creating a table in the database, reading the Excel file using PHPExcel, and inserting the data into the MySQL database using a...