You could do a header() redirect after processing the form data.
<?php
// after all processing has occurred:
header('Location: http://your-domain.com/your-page.html');
exit;
?>
PLEASE NOTE: using this function must be done prior to ouputting ANYthing to the browswer, or it won't work.