Uploadify – A php-flash library to make upload simple
Here is a simple jQuery plugin for creating flash based file uploader.
Look some demo here.
Include the js file and run the following script to make a file input to flash uploader
<script type="text/javascript">// <![CDATA[
$(document).ready(function() {
$('#fileInput').uploadify({
'uploader' : 'uploadify.swf',
'script' : 'uploadify.php',
'cancelImg' : 'cancel.png',
'auto' : true,
'folder' : '/uploads'
});
});
// ]]></script>
– Power to jQuery

