It looks like you're new here. If you want to get involved, click one of these buttons!
<script type=\"text/javascript\" src=\"upload/jquery-1.3.2.min.js\"></script>
<script type=\"text/javascript\" src=\"upload/swfobject.js\"></script>
<script type=\"text/javascript\" src=\"upload/jquery.uploadify.v2.1.0.js\"></script>
<script type=\"text/javascript\">
$(document).ready(function() {
$(\"#uploadify\").uploadify({
'uploader' : 'upload/uploadify.swf',
'script' : 'upload/uploadify.php',
'cancelImg' : 'upload/cancel.png',
'folder' : '<?php echo \"uploads/\".$_SESSION['log_user']; ?>',
'queueID' : 'fileQueue',
'auto' : false,
'multi' : true,
'buttonText' : 'Vybrat soubory'
});
});
</script>
The path to the folder you would like to save the files to. Do not end the path with a '/'.
For absolute paths prefix the path with either '/' or 'http'. Note server security issues with trying to upload to remote destinations.
<script type=\"text/javascript\" src=\"upload/jquery-1.3.2.min.js\"></script>
<script type=\"text/javascript\" src=\"upload/swfobject.js\"></script>
<script type=\"text/javascript\" src=\"upload/jquery.uploadify.v2.1.0.js\"></script>
<script type=\"text/javascript\">
$(document).ready(function() {
$(\"#uploadify\").uploadify({
'uploader' : 'upload/uploadify.swf',
'script' : 'upload/uploadify.php',
'cancelImg' : 'upload/cancel.png',
'folder' : 'uploads/3',
'queueID' : 'fileQueue',
'auto' : false,
'multi' : true,
'buttonText' : 'Vybrat soubory'
});
});
</script>