file upload

File Upload with Progress Bar Using HTML, CSS, JavaScript and PHP with Source Code

Submitted by rems on
Welcome to the File Upload with Progress Bar project, a dynamic web application designed to enhance your file uploading experience. This project allows users to upload multiple files, track their progress, and easily manage each upload through a sleek interface. Each file shows real-time progress through a visual bar, along with detailed information about its upload status. Whether you're working

Multiple Image Upload Using PHP with Source Code

Submitted by rems on
Welcome to the Multiple Image Upload project, a dynamic web application designed to streamline the process of uploading and managing multiple images. Developed with PHP as the server-side scripting language, this project boasts an elegant and responsive user interface that ensures a seamless experience across various devices. Users can effortlessly select and preview multiple images before

Drag and Drop File Uploader Using HTML, CSS and JavaScript with Source Code

Submitted by rems on
Welcome to our Drag and Drop File Uploader project, a sleek and intuitive web application that simplifies the file upload process using a combination of HTML, CSS, and JavaScript. This project offers a seamless and modern interface, featuring a visually pleasing design with a responsive layout that adapts seamlessly to various screen sizes. The application supports both traditional file browsing

Optimizing the Uploaded Image in PHP Tutorial

Submitted by oretnom23 on

In this tutorial, I will show you a way how to upload images in PHP with reduced quality and resized resolution. This kind of feature might be helpful to your current or future project that uploads and displays lots of images. It will help your project load the pages faster even there are a lot of images are being shown because instead of displaying the original size and quality of the images is optimized. For example, you are developing a Blog Site and each blog or article has a thumbnail or banner image.

Cashier Queuing System with Live Monitor and Voice Notification in PHP and SQLite Free Source Code

Submitted by oretnom23 on
This is a Cashier Queuing System with a Live Monitor and Voice Notification. This web-application project manage the flow of the business cashier's clients queue. This can help to ease the queuing process of the said business operation. This project has 4 modules which are the Admin, Cashier, Customer/Client, and Live Monitor for Queued Clients or Customer. The project has a simple a small scope

CodeIgniter Ajax File Upload using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles oh how to ajax upload file in CodeIgniter using jQuery. In order for us to send the file via ajax request, where gonna be using FileReader and FormData. File reader reads the selected file then Formdata holds our file for ajax request. We use jQuery for our ajax request which is a javascript library that makes you handle javascript better.

CodeIgniter File Upload with Flashdata

Submitted by nurhodelta_17 on
This tutorial tackles on how to upload files in CodeIgniter with flashdata. CodeIgniter is a PHP framework that uses MVC(Model-View-Controller) architecture. Flashdata are a type of session but is just set one time means that after you reload the page, this data is removed. Flashdata are usually used when displaying action messages like success or errors.

Uploading data to Amazon S3 from Node.js

Submitted by admin on
What can be simpler than uploading file to the server and saving it to hard drive, right? Open read stream, read bytes, open write stream, write bytes, done. Now let's explore the same question but from a high-load high-availability service perspective. You're designing new Instagram, where will you store the photos? Remember, at a bare minimum you need to make sure that a failure to a single node in a data center will not interrupt your service (you can't allow to lose those precious cat pictures that your users are uploading).