I have a page that submits a form like this;
<form name="getInfoForm" class="getInfoForm" action="<?PHP echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" target="" method="post" novalidate autocomplete="off" >
<input type="submit" name="submit" value="Submit" >
</form>
After the form is processed in the PHP part of the page, how can I redirect to a new page? The PHP processes the form and submits the data to a MySQL table. I want to then go to a specific new page. How do I do that? I can't find an answer in all the similar questions, or I don't understand it.