It looks like you're new here. If you want to get involved, click one of these buttons!
<script type=\"text/javascript\" src=\"../uploadify/jquery-1.3.2.min.js\"></script>
<script type=\"text/javascript\" src=\"../uploadify/swfobject.js\"></script>
<script type=\"text/javascript\" src=\"../uploadify/jquery.uploadify.v2.1.0.min.js\"></script>
<script type=\"text/javascript\">
$(document).ready(function() {
$('#fileInput').uploadify({
'uploader': '../uploadify/uploadify.swf',
'script': '../uploadify/uploadify.php',
'folder': '../upload',
'auto':true,
'multi': true,
'buttonText': 'Opladen',
'cancelImg': ../uploadify/cancel.png',
onError: function (a, b, c, d) {
if (d.status == 404)
alert('Could not find upload script. Use a path relative to: '+'<?= getcwd() ?>');
else if (d.type === \"HTTP\")
alert('Error:' + d.type+ ' Info: '+d.info);
else if (d.type ===\"File Size\")
alert(c.name+' '+d.type+' Limit: '+Math.round(d.sizeLimit/1024)+'KB');
else
alert('error '+d.type+\": \"+d.text);
},
onComplete: function(a, b, c, d, e){
if (d !== '1')
alert(d);
}
});
});
</script>
<div id=\"fileQueue\"></div>
<input type=\"file\" name=\"fileInput\" id=\"fileInput\" />
<p><a href=\"javascript:jQuery('#fileInput').uploadifyClearQueue()\">Cancel upload</a></p>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>