I have 2 forms named frontend.php and backend.php. In front end form i have given the form action as '../backend.php' and input type is submit. I am uploading a file so that i included the action and type like above. when i submit the form it goes to backend file but its not reload to parent form ie. frontend.php. how can i reload to parent form(frontend.php).
<form action="../backend.php" method="post >
<input type="file" name="upload" id="upload" />
<input type="submit" value="upload" id="submit" name="submit" />
</form>