you can use:
header("Location: file.php");
and this will redirect user to the file.php without user noticing anything.
but i dont think you can transfer the form parammeters this way. in other words we are submitting the form without user's clicking the submit button, and noticing it.
this can be solved by using header() to redirect, and using sessions() to pass the values accross to the next file.