I have question regarding form submit. I have this simple form on processFabrication.php to submit all the variables then process it to the database in another page called processExceededQty.php
Co, in processFabrication.php, I have
echo "<form action='processExceededQty.php' method='post'>";
When I click submit
it goes to the processExceededQty.php.
What I am aiming to do is,
- When user click submit, display confirmation yes/no with popup
- After user click yes with the confirmation window, stay in processFabrication.php but methods in processExceededQty.php is still executed.
- When user click no on the popup, go back and don't do form action
Any help would be greatly appreciated.