tags. You can quickly insert code using ctrl + f.
<head>
<link href="uploadify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript" src="jquery.uploadify.v2.1.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#file_upload').uploadify({
'uploader' : 'uploadify.swf',
'script' : 'uploadify.php',
'cancelImg' : 'cancel.png',
'folder' : 'uploads',
'auto' : true,
'multi' : true
});
});
</script>
</head>
<body>
<input id="file_upload" name="file_upload" type="file" />
</body>
<php
$targetPath = "D:/some/folder/".$_POST['newFolder'];
mkdir($path , 777, TRUE);
?>
It looks like you're new here. If you want to get involved, click one of these buttons!