ho trovato l'errore...
codice sbagliato:
Codice PHP:
else {$file_scelto = $_POST['file_corrente'] ; }
$_SESSION['file_scelto'] = $file_scelto;
echo "file scelto: ".$file_scelto ;
codice giusto:
parentesi chiusa troppo presto....Codice PHP:
else
{
$file_scelto = $_POST['file_corrente'] ;
$_SESSION['file_scelto'] = $file_scelto;
echo "file scelto: ".$file_scelto ;
}
grazie in ogni caso