It looks like you're new here. If you want to get involved, click one of these buttons!
<?php
$verzeichnis = time();
$verzeichnis_gal = $verzeichnis.'-gallery';
//Erstellt ein Verzeichnis ausgehend von der Lage des Skriptes
mkdir(\"$verzeichnis\", 0777);
$linkforcustomer = 'Link for this special folder: http://www.demo.eu/special/action.php?show='.$verzeichnis;
chmod (\"$verzeichnis\", 0777);
?>
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />
<title>Upload Files for special folders</title>
<link rel=\"stylesheet\" href=\"uploadify.css\" type=\"text/css\" />
<script type=\"text/javascript\" src=\"jquery-1.3.2.min.js\"></script>
<script type=\"text/javascript\" src=\"swfobject.js\"></script>
<script type=\"text/javascript\" src=\"jquery.uploadify.v2.1.0.min.js\"></script>
<script type=\"text/javascript\">
$(document).ready(function() {
$(\"#fileInput4\").uploadify({
<?php
echo \"
'uploader' : 'uploadify.swf',
'script' : 'uploadify.php',
'cancelImg' : 'cancel.png',
'folder' : '\".$verzeichnis.\"',
'wmode' : 'transparent',
'width' : 130,
'queueID' : 'fileQueue',
'fileDesc' : 'Image Files (*.jpg, *.JPG)',
'fileExt' : '*.jpg;*.JPG',
'auto' : true,
'multi' : true
\";
?>
}); });
</script>
</head>
<div class=\"demo\">
<p><strong>File Upload</strong></p>
<div id=\"fileQueue\" style=\"width:400px;height:550px;border:1px solid #E5E5E5;padding: 0;overflow:auto;margin-bottom: 10px;\">&nbsp;</div>
<input id=\"fileInput4\" name=\"fileInput4\" type=\"file\" /></div>
<br><br>
<?php
echo $linkforcustomer;
?>
</body>
</html>