At the moment, I have form in my index.html file:
<div id="submit">
<form action="upload.php" method="post" enctype="multipart/form-data">
Select your file: <input type="file" name="file"><br><br>
<input type="submit" value="Upload">
</form>
</div><!--end submit-->
It runs the code I have in the upload.php file however, I would like the page to return to the index.html file.
How do I accomplish this?