Ciao,
innanzitutto ringrazio anche te per l'intervento.
Per quanto rigurda l'upload io sono costretto ad usare questo codice in quanto è strettamente collegato a flash
Codice PHP:
<?php
// cartella delle foto './temp' se volete cambiatela con la vs. cartella
$storage = './public/Foto/';
// full path/filename to save
$uploadfile = "$storage/" . basename( $_FILES['Filedata']['name'] );
// move the file from the http request to storage
$success = move_uploaded_file( $_FILES['Filedata']['tmp_name'] , $uploadfile );
// if successful
if( $success ) echo( '1 ' . $_FILES['Filedata']['name']);
// else failed
else echo( '0');
?>
Farò delle ricerche in merito per vedere se posso modificare qualcosa