Sto usando il php per inviare files dentro il mio spazio web.
Il form è strutturato in questo modo:
Quando clicco su "Invia" ottengo il seguente errore:Codice HTML:<form enctype="multipart/form-data" method="post" action="pagina.php"> <tr><input type="hidden" name="MAX_FILE_SIZE" value="1048576" /> <td> <input type="file" name="immagine"> </td> </tr> <td> <input type="reset" name="reset" value="Reset"> <input type="submit" name="submit" value="Invia"> </td> </form>
Eppure sia il manuale online sia la mia guida cartacea dicono di usare il Post per i files.Method Not Allowed
The requested method POST is not allowed for the URL pagina.php.
Che mi consigliate?
[Uso PHP-4 e Apache2]