Ciao, sì sto facendo un UpLoad ...
Cmq anche quello che mi hai indicato con FireFox non funziona :-)
Il problema è che firefox passa solo il nome del file :-(
ho fatto questa prova.
file.html
Codice PHP:
<html>
<head>
</head>
<body>
<form action="file.asp" method="get">
<input type="file" name="file_up" size="30"/>
<input type="submit" />
</form>
</body>
</html>
se vedi quello che passa FF è solo il nome del file :-(
se poi provi a mettere post e ad usare questo file per vedere cosa restituisce (by html.it)
file.asp
Codice PHP:
<html>
<head>
</head>
<%
for each item in request.form
strValore = server.HTMLEncode(request.form(item))
strNome = item
response.write " Nome Campo --> " & strNome & " " & "
"
response.write " Valore Contenuto --> " &strValore & "
"
next
%>
<body>
</body>
</html>
anche in questo caso passa solo il nome del file :-(
Con Internet Explorer va tutto che è una meraviglia ...
Help