header("Location: cartella/my_personal_homepage.php");

prima però non devi inserire alcun tag, neanke <html> o altro
qualcosa del genere potrebbe andar bene?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<?header("Location: cartella/my_personal_homepage.php");?>
<html>
<head>
<title></title>
</head>
<body></body>
</html>
Mi da il seguente errore:
Warning: Cannot modify header information - headers already sent by (output started at C:\Programmi\Sviluppo\Server\Web\Apache2
\Apache2\htdocs\index.php:2) in C:\Programmi\Sviluppo\Server\Web\Apache2
\Apache2\htdocs\index.php on line 3
Trovato
Basta mettere:
<? header("Location: cartella/my_personal_homepage.php");?>
<html>
<head>
<title></title>
</head>
<body></body>
</html>
senza nulla prima, e credo, volendo, senza nulla dopo
e io che ho detto?