After the file has been handled by my php script, a page is displayed where it is indicated that the file has been received. I then use the BACK button in the browser, but get back to the page where it says that the file was submitted (I want to come back to page with the form!!!).
In fact, the form and the file handling is all done in one php file, that calls itself upon a POST event. There is check in the code:
Code: Select all
if (is_uploaded_file($_FILESї'imageFile']ї'tmp_name']))Code: Select all
unset($_FILESї'imageFile']ї'tmp_name']);I also tried just doing
Code: Select all
unset($_FILES);Thanks