I think you'd need to make a new HTML form and point it to your php script:
<FORM METHOD="post" ACTION="elsewhere.php">
Then just be sure to put your submit button in before the closing </FORM> tag. Any form <INPUT> tags will be passed as variables (their names and values). If you want to take across some data you might have to use:
<INPUT TYPE="hidden" NAME="myvar" VALUE="<? echo $myvar; ?>">
I hope that makes a bit of sense 😉