Salve, vorrei sapere come reindirizzare una pagina ad un'altra dopo la verifica di un campo con PHP

se io ad esempio ho questo codice:
Codice PHP:
<?php 
}

if (isset(
$_POST['securityImageValue']) && isset($_SESSION['strSec'])) {
    if (
md5($_POST['securityImageValue']) == $_SESSION['strSec']) {
        print 
'You correctly enetered the security image text. Goody for you.';
        
    }
    else {
        print 
'The text you entered does not match the security image you saw. Please try again;
        Form();
    }    
}
else 
    Form();
?>
e al posto di:

Codice PHP:
else {
        print 
'The text you entered does not match the security image you saw. Please try again;
        Form();
    } 
Gli vorrei dire "vai alla pagina.htm", cosa ci devo scrivere?
Scusate l'ignoranza in materia.

Attendo fiducioso in una risposta.