jiggens Posted July 8, 2007 Share Posted July 8, 2007 I decided to get back to basics and run a test script using POST and when i do so i get a 404 error. Anyone know what the cause of this maybe? <html> <head></head> <body> <form action="test_upload.php" method=post> <input type=hidden name="MAX_FILE_SIZE" value=30000> <input type=file name=test> <input type=submit> </form> </body> </html> ======== test_upload.php ========= <?php // just print out the $_FILES array print_r($_FILES); Any help will suffice Link to comment https://forums.phpfreaks.com/topic/58971-solved-upload-get-404-error/ Share on other sites More sharing options...
simcoweb Posted July 8, 2007 Share Posted July 8, 2007 404 is a page not found. Either it can't find your test_upload.php or a page referenced in it. Link to comment https://forums.phpfreaks.com/topic/58971-solved-upload-get-404-error/#findComment-292657 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.