how to have 2 submit buttons on one form and one of them to submit and redirect to another form code example
Example 1: two buttons in same form
<input type="submit" name="button_1" value="Click me">
Example 2: same form two submits
<input type="submit" formaction="example.php">
<button type="submit" formaction="mail.php"> Button</buttton>