Search This Blog

Sunday, December 15, 2013

HTML5 Drag and Drop File Upload

Developing a small web application called Upload Center, that will allow people to upload photos from their computers by dragging and dropping them onto the browser window, possible with the new HTML5 APIs exposed by modern browsers.   Demo   Downlo...
Continue Reading...

jQuery HTML5 File Upload with Bar Progress

You can drag & drop files from your desktop on this webpage with Google Chrome, Mozilla Firefox and Apple Safari.     Demo   Downloa...
Continue Reading...

jQuery HTML5 File Upload with Bar Progress

Here is how you can implement drag and drop multiple file upload with native JavaScript. No plugins needed. Just plain old new HTML5. Again there is a working demo. You will need FireFox 3.6 to test it. Full source code can be at GitHub. Demo   Download ...
Continue Reading...

jQuery Upload Multiple Files

Demo | Download...
Continue Reading...

HTML5 drag & drop API

Dragging and dropping files from your desktop to a browser is one of the ultimate goals for web application integration. Demo | Download var vglnk = { api_url: '//api.viglink.com/api', key: 'a187ca0f52aa99eb8b5c172d5d93c05b' ...
Continue Reading...

HTML5 File and Folder Upload Control

 Get started fast with SlickUpload and be ready to scale up to advanced functionality when you need it.                                                          Demo   Downlo...
Continue Reading...

Multiple File Upload using HTML5

As a response to a reported bug where Chrome was taking ages to load up a flash multiple-file uploader, I’ve updated KFM to use HTML5′s multiple-file input box where possible.                                              ...
Continue Reading...

Ajax Uploading With HTML5 File api

Prior to HTML5 and its File API, getting media from a user was a somewhat sordid affair.   Demo | Download ...
Continue Reading...

HTML5 Multiple File Upload Plugin with progress-bar

This plugin uses XHR for uploading multiple files with progress-bar in FF3.6+, Safari4+, Chrome and falls back to hidden iframe based upload in other browsers, providing good user experience everywhere.                                    ...
Continue Reading...

Friday, December 13, 2013

How to Build Shopping Cart w/ Checkout in PHP

Download Script I just rewrite the code included in this post to fix minor problem encounter by other PHP programmers who can’t run the shopping cart. The code is taken from this link: http://www.qualitycodes.com/tutorial.php?articleid=25&title=Tutorial-Building-a-shopping-cart-in-PHP. As you may have noticed, a lot of...
Continue Reading...

Create a Zip File Using PHP

Creating .ZIP archives using PHP can be just as simple as creating them on your desktop. PHP's ZIP class provides all the functionality you need! To make the process a bit faster for you, I've coded a simple create_zip function for you to use on your projects. The PHP /* creates a compressed zip file */ function create_zip($files = array(),$destination = '',$overwrite = false) { //if the zip file already exists...
Continue Reading...

Creating ZIP File with PHP

This post helps you to create a ZIP file using PHP, Arun had coded a few lines of script that system converts the selected files into ZIP file format. It is useful for ecommerce web projects like selling PDFs, Images and Docs ect, use can choose files and download it into compressed format. Take a look at this live demo. Download Script     Live...
Continue Reading...

Encoding & Decoding PHP Code

There are many ways to encode and decode PHP code. From the perspective of site security, there are three PHP functions —str_rot13(), base64_encode(), and gzinflate — that are frequently used to obfuscate malicious strings of PHP code. For those involved in the securing of websites, understanding how these...
Continue Reading...