Utilizzo questo plugin di jQuery per caricare più files contemporaneamente.
Posto in PHP perchè il problema è lato server, infatti lo script funziona correttamente ma non riesco a recuperare lato server i dati che mi servono. In particolare qui http://www.uploadify.com/documentati...ns/scriptdata/ spiega come inviare (tramite scriptData) i dati al file backend che è quello che esegue l'upload che risulta essere questo:
Codice PHP:
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/';
$targetFile = str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];
// $fileTypes = str_replace('*.','',$_REQUEST['fileext']);
// $fileTypes = str_replace(';','|',$fileTypes);
// $typesArray = split('\|',$fileTypes);
// $fileParts = pathinfo($_FILES['Filedata']['name']);
// if (in_array($fileParts['extension'],$typesArray)) {
// Uncomment the following line if you want to make the directory if it doesn't exist
// mkdir(str_replace('//','/',$targetPath), 0755, true);
move_uploaded_file($tempFile,$targetFile);
echo str_replace($_SERVER['DOCUMENT_ROOT'],'',$targetFile);
// } else {
// echo 'Invalid file type.';
// }
}
Però anche se in questa pagina scrivo ad esempio:
Codice PHP:
echo $_POST['nome_assegnato_a_scriptData'];
non visualizzo comunque niente.
Come faccio a recuperare i $_POST per poi utilizzarli?