Credimi assolutamente no!
Però ho scoperto che funziona, ma non stampa nulla a video. Ho provato infatti a fare così:
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);
require_once('../inc/variabili.php');
require_once('../inc/db_conn.php');
$nome = $_POST['firstName'];
$query = "INSERT INTO tbl_nomi (nome) VALUES ('$nome')";
$result = mysql_query($query, $db_link) or die (mysql_error($result));
move_uploaded_file($tempFile,$targetFile);
echo str_replace($_SERVER['DOCUMENT_ROOT'],'',$targetFile);
// } else {
// echo 'Invalid file type.';
// }
}
E funziona correttamente. Deduco che sia lo script jQuery che fai in modo di non avere in output niente?