Este es el codigo php
Código PHP:
Ver original<?php
require ("../config.php");
$tempFile = $_FILES['Filedata']['tmp_name'];
$md5=md5($_FILES['Filedata']['name'].date("j m Y s a y J")); mkdir('../bodega/'.$md5); $targetFile = "../bodega/" . $md5 . "/" . $_FILES['Filedata']['name'];
echo $_FILES['Filedata']['name'];
}
?>