It looks like you're new here. If you want to get involved, click one of these buttons!
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
<html xmlns=\"http://www.w3.org/1999/xhtml\">
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
<title>SNP Uploader - Powered by Uploadify</title>
</head>
<body>
<input type=\"file\" name=\"fileInput\" id=\"fileInput\" />
<script type=\"text/javascript\">
$(document).ready(function() {
$('#fileInput').fileUpload ({
'uploader' : 'uploader.swf',
'script' : 'upload.php',
'cancelImg' : 'cancel.png',
'multi' : true,
'fileExt' : '*.wma;*.wmv;*.mpg3;*.mpg;*.mpegcavi;*.mov;*.jpg;*.jpeg;*.gif;*.bmp;*.png;*.tiff;*.html;*.xml;*.mp3',
'simUploadLimit' : 5,
'sizeLimit' : 26214400,
'auto' : false,
'folder' : '/uploads/files'
});
});
</script>
</body>
</html>
$(function() {
$('#fileInput').fileUpload({
'uploader' : '../Uploadify/uploader.swf',
'script': '/workspace/upload',
'folder': 'uploads',
'multi': 'true',
'buttonText': 'Upload Images',
'displayData': 'speed',
'simUploadLimit': 2,
'auto': true,
'cancelImg': '../Uploadify/cancel.png'});
});